@Ketchup901 @sukanka when makepkg
extracts the contents of matlab.tar
, it's normal that $srcdir
contains only the matlab
directory and a link to matlab.tar
. Then, while the original installer is running, $srcdir/build
is created with all the files which can be happily consumed by package_python-matlabengine
and moved around by package_matlab
. But I tried with a partial install, and I confirm $srcdir/build
is empty. Maybe the Python engine creation needs be done after MATLAB is packaged.
Search Criteria
Package Details: matlab 9.14.0.2337262-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/matlab.git (read-only, click to copy) |
---|---|
Package Base: | matlab |
Description: | A high-level language for numerical computation and visualization |
Upstream URL: | https://www.mathworks.com |
Keywords: | computation matlab numerical visualization |
Licenses: | custom |
Provides: | matlab-bin |
Submitter: | ido |
Maintainer: | None |
Last Packager: | Rubo |
Votes: | 40 |
Popularity: | 0.000567 |
First Submitted: | 2015-08-15 09:33 (UTC) |
Last Updated: | 2023-09-19 12:20 (UTC) |
Dependencies (2)
- matlab-metaAUR
- gendesk (make)
Required by (11)
- carnot
- digital_rf-git (optional)
- diplib-git (optional)
- gurobi (optional)
- gurobi81 (optional)
- jupyter-matlab_kernel (optional)
- libmole (optional)
- matlab-segymat (optional)
- python-matlabengine
- vitis (optional)
- vivado (optional)
Sources (3)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 .. 26 Next › Last »
Rubo commented on 2022-04-21 07:18 (UTC) (edited on 2022-04-21 07:26 (UTC) by Rubo)
sukanka commented on 2022-04-21 01:02 (UTC)
@Ketchup901 I have the same problem, I noticed there is no such file or directory (${srcdir}/build/extern/engines/python
) in the downloaded tarball, only ${srcdir}/build/extern/include
. (I redownloaded for several times) So makepkg
will
give an error. But I also tried matlab installer script, after installation, there is extern/engines/python
. I don't know the reason.
Ketchup901 commented on 2022-04-20 22:39 (UTC) (edited on 2022-04-20 22:39 (UTC) by Ketchup901)
@Rubo I'm using the most recent PKGBUILD. Yes, the error occurs right after "Packaging Python API". FYI I'm trying to do a partial install with only MATLAB, don't know if that makes any difference. I've edited the PKGBUILD to say partialinstall=true
and products=( "MATLAB" )
.
Rubo commented on 2022-04-20 21:40 (UTC)
@Ketchup901 it's the directory which contains the necessary files to build the Python engine. Please make sure that python-matlabengine
comes before matlab
in the PKGBUILD pkgname
variable, as the package_matlab
function moves files needed by package_python-matlabengine
, so if that's not the case, that's likely why there is no such directory and it probably means you are using an old PKGBUILD. The current one should work, or at least it works for me. Did you get the error right after -> Packaging Python API...
?
Ketchup901 commented on 2022-04-20 19:38 (UTC)
What is "${srcdir}/build/extern/engines/python"
supposed to be? I followed the instructions for creating matlab.tar but there is no such directory.
Rubo commented on 2022-04-20 11:05 (UTC) (edited on 2022-04-20 12:17 (UTC) by Rubo)
@MoetaYuko https://github.com/Rubo3/matlab-aur/blob/Rubo3-patch-1/PKGBUILD Before pushing an update, can you please tell me if this works for you? It seems to work for me.
Edit: I see you have forked and updated VictriD's PKGBUILD here. I have integrated your changes, thank you.
moetayuko commented on 2022-04-20 09:54 (UTC)
- MatLab won't start after overriding LD_LIBRARY_PATH with gcc9 lib, the hack should be dropped.
- libfreetype.so should be removed in package_matlab() as well, in case the tar is not prepared by install.sh
Rubo commented on 2022-04-19 18:20 (UTC)
@mys_721tx Thanks, fixed it.
mys_721tx commented on 2022-04-19 16:45 (UTC) (edited on 2022-04-19 16:46 (UTC) by mys_721tx)
@Rubo Step 4 should be MATLABROOT/install
instead.
Rubo commented on 2022-04-19 16:04 (UTC) (edited on 2022-04-25 16:25 (UTC) by Rubo)
Hello, I just pushed an update to the 2022a release. Some things have changed:
- The PKGBUILD is based on the one VictriD kindly provided here, with some minor adjustments to make it work against the 2022a release. For more information on how it works and what has changed, read that comment. I put the files on a GitHub repo here: https://github.com/Rubo3/matlab-aur.
- I rewrote most of the README, in order to cover some installation issues, like the correct
unzip
flags so that the installer doesn't complain of files being shorted than expected; the newlibxcrypt-compat
dependency and the FreeType shared object renaming. - I removed
matlab.script
, let me know if you want it back. - I added an install script, which covers basic installation needs (i.e. the exact procedure listed in the README), so that you only have to interact with the on-line installer. Please remember to edit the PKGBUILD
products
variable beforehand if you want a partial install. The points listed by bbaserdem here still hold.
It runs, but there are many errors, most likely because the dependencies on the PKGBUILD do not reflect the current ones. If you'd like to help out,
here are the MATLAB dependencies for the Docker container. In the Source Repository
box you can find the link to the base-dependencies.txt
mentioned in the Dockerfile
. If you find something interesting, please leave a message!
Pinned Comments
Rubo commented on 2022-09-25 13:31 (UTC) (edited on 2022-09-25 13:32 (UTC) by Rubo)
Hi, I'm tackling the problem with the add-ons installation, where the installer can't write to
/usr/local/MATLAB/R2022b
. I think we should avoid manualchmod
s orchown
s, as it would be easy to mess up with the permissions, so I created amatlab
group withrwx
permissions, which owns the tree starting at/usr/local/MATLAB/R2022b
. The PKGBUILD sets up the correct permissions, so after installing MATLAB, you should just add yourself to that group, re-login and then you should be able to install add-ons. So far I'm able to start the installer, download the add-on archive, but when I get toPerforming post-installation tasks. This may take a few minutes...
, an error occurs, and the installer logsEnd - Unsuccessful Exception: java.lang.InterruptedException
without further information.If anyone wants to help me resolve this issue, here is the repo: https://github.com/Rubo3/matlab-aur/tree/addons.
Rubo commented on 2022-09-16 13:52 (UTC) (edited on 2022-09-16 20:26 (UTC) by Rubo)
I updated the PKGBUILD to MATLAB R2022b. Sorry it took so long. Here are the main changes:
namcap
(thanks @sukanka), and are now managed via the matlab-meta meta package, now it's really easy to play around with them, as you don't have to rebuild the entire MATLAB package (thanks @bbaserdem). I still don't know the exact dependencies needed by MATLAB, as I don't use all its toolkits and whatnots. As always, please tell me if you find something.install.log
, under the same directory of the PKGBUILD, so that you can check whether something went wrong even if it didn't fail (e.g. when you need a new license or installation key because the major version changed).python-matlabengine
to its own repo, which is built from upstream and works for the latest MATLAB versions. Currently it supports Python 3.9 and 3.10. If you have other needs, you can find the installation instructions here. Since the source files are still provided in your local MATLAB installation under$_instdir/extern/engines/python
, building it and packaging it here was really just a convenience. I would like to know how many users of this PKGBUILD really need to spoof their Python version, so that we can reason about putting back that extra logic in the other PKGBUILD.silverbluep commented on 2020-09-21 16:39 (UTC) (edited on 2021-02-03 18:13 (UTC) by silverbluep)
READ THE README FILE IN THE REPO. NO AUR HELPERS SUPPORTED. ONLY ARCHLINUX AS OS IS SUPPORTED. YOU SHOULD BE BUILDING THIS PACKAGE USING MAKEPKG, NOTHING ELSE WILL BE SUPPORTED. Please only post issues here AFTER you followed the README.md. located at the root of this repo: https://aur.archlinux.org/cgit/aur.git/tree/README.md?h=matlab Due to a lot of comments; my spam filter is removing AUR notifications which keeps me from responding timely to issues in packaging, please don't post if you don't do some troubleshooting yourself. If your skill level is not up to troubleshooting (or following simple instructions as laid out by the readme), just install matlab locally, without using this package.