usnistgov / fipy

FiPy is a Finite Volume PDE solver written in Python
http://pages.nist.gov/fipy/en/latest
Other
489 stars 148 forks source link

Need help for 'Gmsh version must be >= 2.0' #974

Closed CalebDmArcher closed 7 months ago

CalebDmArcher commented 8 months ago

I am using Pycharm SSH connected to a Linux server that has Python 3.11.2 From the package window of Pycharm, I can see that it has Fipy 3.4.4 and Gmsh 4.11.1 installed and both are in the same directory.

However, I have this error 'OSError: Gmsh version must be >= 2.0.'

The line in my code mesh = Gmsh3D("cube.geo") in my code that caused the error. This line of code calls other functions under the file 'fipy/meshes/gmshMesh.py'. So I think the fipy on the server was trying to call the wrong Gmsh tool. But I am not sure how to check who this fipy is trying to call.

Before getting this Gmsh version error, I got an error says that Gmsh was not defined so I just installed Gmsh into the server (I assume that there is an import gmsh command somewhere in fipy and that might trigger the gmsh not defined error if gmsh is not installed). And after installing Gmsh, I saw the Gmsh version error.

For the server safety issue, the Python interpreter and site packages are not in the same level. The Python is installed in the system-wide level /bin directory which site packages are installed in the user environment. But I assumed that the PATH to the user environment is pre-setted and this is why Pycharm could find the packages in the user directory. And since I confirmed that the Fipy and Gmsh are in the same site package directory, I cannot understand why Fipy cannot find the correct Gmsh.

Cannot use import fipy fipy.test() to check the setting of the solver since the server does not allow me to do so.

The code is running fine if using my local interpreter (either on Win11 or WSL on Win11).

/////////////////////////////

This one suggests that Gmsh should be installed before installing Fipy or I will get the Gmsh version error. However, I tried installing Fipy and then reinstalling Fipy, still got the Gmsh version error. I also tried installing Fipy and Gmsh and then installing Gmsh first followed by installing Fipy. Still the same error.

This one suggests that 'application (.exe) has to be in the directory with python modules' but I am trying on Linux server so there is no .exe file, plus I do not have the authority to modify the system-level directory. So I haven't tried this method yet.

guyer commented 8 months ago

I am using Pycharm SSH connected to a Linux server that has Python 3.11.2 From the package window of Pycharm, I can see that it has Fipy 3.4.4 and Gmsh 4.11.1 installed and both are in the same directory.

However, I have this error 'OSError: Gmsh version must be >= 2.0.'

What is the result of

import fipy as fp
print(fp.gmshVersion())

Cannot use import fipy fipy.test() to check the setting of the solver since the server does not allow me to do so.

Please explain.

This one suggests that Gmsh should be installed before installing Fipy or I will get the Gmsh version error. However, I tried installing Fipy and then reinstalling Fipy, still got the Gmsh version error. I also tried installing Fipy and Gmsh and then installing Gmsh first followed by installing Fipy. Still the same error.

The order of installation doesn't matter.

I'm relying on a google translate of that page, but I don't see anywhere a discussion of what order to install FiPy and Gmsh. As far as I can tell, the issues are because they're attempting to read an msh4 file, which FiPy doesn't support. It looks like they tried to convert it to msh2, using both gmsh and meshio, but apparently that didn't work, either. Hard to tell; they never bothered to ask us for help.

This one suggests that 'application (.exe) has to be in the directory with python modules' but I am trying on Linux server so there is no .exe file, plus I do not have the authority to modify the system-level directory. So I haven't tried this method yet.

That's all about Windows and doesn't apply on Linux. Gmsh needs to be on your $PATH. Let's work on figuring out if it is.

CalebDmArcher commented 8 months ago
import fipy as fp
print(fp.gmshVersion())

returns error

    print(fp.gmshVersion())
          ^^^^^^^^^^^^^^
AttributeError: module 'fipy' has no attribute 'gmshVersion'

I also tried

import fipy
print(fipy.__version__)

which returns 3.4.4 and I tried

import gmsh
print(gmsh.__version__)

which returns 4.11.1 The versions of fipy and gmsh are exactly what PyCharm package/interpreter manager shows

Screenshot 2023-11-14 023136

These code about version do show that both fipy and gmsh can be recognized by the compiler, though it does not prove that fipy could find a proper gmsh to use.

About the Chinese website talking about the installation order, it mentions '安装: 注意安装时要先装gmsh再装fipy,否则报错OSError: Gmsh version must be >= 2.0.' which means 'install gmsh first and then install fipy. If not that version error would show up'. (When I described what I tried, some words got auto-fixed by Grammarly which made that paragraph non-sense. What I was trying to say is that I tried in two different ways: Since I installed fipy first and then installed gmsh initially, so I uninstalled fipy to make sure only gmesh left which might be equal to installing gmsh first. Then I installed fipy back. This did not help. Then I uninstalled fipy and gmesh. After that, I installed both back with the order suggested by that website which is gmsh first This did not help either.)

Another thing I hope to share with you is that the way I install fipy and gmsh is by using python3.11 pip install --user package_name. This will install the packages into the default user-level site-package folder instead of the system-level site-package folder. The python3.11 is system-level. Since Pycharm could automatically find fipy and gmsh packages, I assume that maybe the default user-level directory is recorded on $PATH. But I could be wrong.

guyer commented 8 months ago
import fipy as fp
print(fp.gmshVersion())

returns error

    print(fp.gmshVersion())
          ^^^^^^^^^^^^^^
AttributeError: module 'fipy' has no attribute 'gmshVersion'

Sorry about that. That works on master, but not in 3.4.4. Please try:

>>> from fipy.meshes.gmshMesh import gmshVersion, _gmshVersion
>>> print(gmshVersion())
>>> print(_gmshVersion())

and

>>> from subprocess import Popen, PIPE
>>> p = Popen(["gmsh", "--version"], stderr=PIPE, stdout=PIPE)
>>> out, err = p.communicate()
>>> print(err.decode('ascii').strip())
>>> print(out.decode('ascii').strip())
import gmsh
print(gmsh.__version__)

This doesn't matter. FiPy doesn't import gmsh, so there's no guarantee at all that it's the same version of gmsh that FiPy accesses with Popen.

About the Chinese website talking about the installation order, it mentions '安装: 注意安装时要先装gmsh再装fipy,否则报错OSError: Gmsh version must be >= 2.0.' which means 'install gmsh first and then install fipy. If not that version error would show up'.

OK, thank you. I don't know how I missed that the first time, but it's just wrong. The order of installation doesn't matter.

Another thing I hope to share with you is that the way I install fipy and gmsh is by using python3.11 pip install --user package_name. This will install the packages into the default user-level site-package folder instead of the system-level site-package folder. The python3.11 is system-level. Since Pycharm could automatically find fipy and gmsh packages, I assume that maybe the default user-level directory is recorded on $PATH. But I could be wrong.

If I had to guess, this is the source of the problem. There's a reason we recommend installing with conda.

CalebDmArcher commented 8 months ago

I have tried to uninstall Fipy and Gmsh completely and then installed them again. And I saw the warning that I saw last time which I ignored (shown in the image below). The warning says that the scripts futurize and pasteurize are installed in the user-level directory is not on $PATH. So I added this directory into $PATH and I have confirmed it by using 'echo $PATH'. I do see the directory showed up (as shown in the image below)

image

However, I am still having this problem: image

May I know if there are anything else I could try?

guyer commented 8 months ago

Please answer the questions I asked the last time:

Sorry about that. That works on master, but not in 3.4.4. Please try:

>>> from fipy.meshes.gmshMesh import gmshVersion, _gmshVersion
>>> print(gmshVersion())
>>> print(_gmshVersion())

and

>>> from subprocess import Popen, PIPE
>>> p = Popen(["gmsh", "--version"], stderr=PIPE, stdout=PIPE)
>>> out, err = p.communicate()
>>> print(err.decode('ascii').strip())
>>> print(out.decode('ascii').strip())
CalebDmArcher commented 8 months ago

Sorry, I totally missed that reply.

Here is the answer: print(gmshVersion()) returns None print(_gmshVersion()) returns 0.0

And for the other part, I got the error: image Seems like Gmsh cannot be found for some reason.

I also double-checked the $PATH and went to the /bin folder to confirm that there is a file called 'gmsh' image

guyer commented 8 months ago

OK, thank you. The fact that gmsh is on the $PATH for your shell is not a guarantee that gmsh is on the path that Python subprocess sees. It's also not a guarantee that gmsh is executable.

Try:

import os
print(os.environ["PATH"])

If /nethome/swu321/.local/bin does not appear there, then that's your problem. I recommend you install everything with conda, the way we recommend.

In case /nethome/swu321/.local/bin does appear there, then try:

from subprocess import Popen, PIPE
p = Popen(["ls", "-l", "/nethome/swu321/.local/bin"], stderr=PIPE, stdout=PIPE)
out, err = p.communicate()
print(err.decode('ascii').strip())
print(out.decode('ascii').strip())
CalebDmArcher commented 8 months ago

The maintainer of the server does give me a conda option.

In the recommend method you mentioned above, there is: conda create --name <MYFIPYENV> --channel conda-forge python=<PYTHONVERSION> fipy gmsh May I know what I should fill for <MYFIPYENV>? I assume that I should use 3.11 for <PYTHONVERSION>.

guyer commented 8 months ago

May I know what I should fill for <MYFIPYENV>?

Anything you want. Give it a name.

I assume that I should use 3.11 for <PYTHONVERSION>.

Sure.

CalebDmArcher commented 8 months ago

Even with Conda, I still have this error: image

The Conda environment was built by conda create --name MYFIPYENV --channel conda-forge python=3.9 fipy gmsh I have used conda list gmsh to confirm that gmsh has been installed. I can also find a file called 'gmsh' in the /bin directory. image

(Python3.11 will have lots of conflict files and the Conda environment cannot be built. But if using Python3.9, at least Conda environment can be built)

If I try to install gmsh again by using conda install -c conda-forge gmsh It will reports All requested packages already installed.

If I go to the package manager of Python interpreter inside Pycharm, I can find fipy which locates in the Conda environment directory. But for some reasons, I cannot find gmsh image

I also tried to run the code directly in the terminal instead of using Pycharm and it proves that Gmsh cannot be found: image

print(gmshVersion()) returns None print(_gmshVersion()) returns 0.0 Gmsh3D() returns the Gmsh version error import gmsh returns ModuleNotFoundError: No module named 'gmsh'

I also tried download gmsh by using Pycharm (while the hidden Gmsh which was installed when building the Conda environment is still there). After doing so, I can see gmsh in the package manager in Pycharm and the location is the same location as fipy, but I still get the Gmsh version error. It is just no more No module named 'gmsh' error associate with import gmsh.

guyer commented 8 months ago

This sounds like a PyCharm environment issue. I'm in no position to help with that.

CalebDmArcher commented 8 months ago

This sounds like a PyCharm environment issue. I'm in no position to help with that.

I also tried only with the terminal (without using Pycharm) and got the same error. 283595953-606cd9a8-16d6-4653-a38c-cb6bdc189c4d But do you think it is the Pycharm that messes up the environment?

Since Conda might be the final method we could try. Maybe it is just a problem of the server. If I find a Linux machine or Mac to do it and get success, will let you know. BTW, do you think M3 or higher level chip Mac book could handle Fipy with Gmsh?

guyer commented 8 months ago

import gmsh is not useful at all. FiPy does not import gmsh.

When you're in a terminal, what does

which gmsh

return?

What does

gmsh --version

return?

guyer commented 8 months ago

BTW, do you think M3 or higher level chip Mac book could handle Fipy with Gmsh?

I don't know why not, but I've not tested

CalebDmArcher commented 8 months ago

image Both returns Command not found But conda list gmsh returns the details of gmsh

guyer commented 8 months ago

How about

echo $PATH

and

ls -l /nethome/swu321/.conda/envs/MYFIPYENV/bin

?

CalebDmArcher commented 8 months ago

image echo $PATH returns some directories which include /nethome/swu321/.conda/envs/MYFIPYENV/bin

guyer commented 8 months ago

and...?

CalebDmArcher commented 8 months ago

ls -l /nethome/swu321/.conda/envs/MYFIPYENV/bin returns a really long list of files

guyer commented 8 months ago

OF COURSE IT DOES!!! WHAT ARE THEY!?!?

CalebDmArcher commented 8 months ago

(MYFIPYENV) swu321@icsrl-srv3.ece.gatech.edu>ls -l /nethome/swu321/.conda/envs/MYFI PYENV/bin total 103736 lrwxrwxrwx 1 swu321 2626-ece 8 Nov 16 12:39 2to3 -> 2to3-3.9 -rwxr-xr-x 1 swu321 2626-ece 128 Nov 16 12:39 2to3-3.9 -rwxr-xr-x 2 swu321 2626-ece 16920 Sep 29 06:31 4channels -rwxr-xr-x 2 swu321 2626-ece 16712 Mar 9 2022 acpl -rwxr-xr-x 2 swu321 2626-ece 30288 Nov 2 10:43 adig -rwxr-xr-x 2 swu321 2626-ece 17224 Nov 2 10:43 ahost -rwxr-xr-x 2 swu321 2626-ece 16712 Mar 9 2022 amk_ccc -rwxr-xr-x 2 swu321 2626-ece 16712 Mar 9 2022 amk_fft2 -rwxr-xr-x 2 swu321 2626-ece 21352 Mar 9 2022 amk_grf -rwxr-xr-x 2 swu321 2626-ece 16552 Mar 9 2022 amk_hy -rwxr-xr-x 2 swu321 2626-ece 16952 Mar 9 2022 amk_m2 -rwxr-xr-x 2 swu321 2626-ece 16560 Mar 9 2022 amk_p2 -rwxr-xr-x 2 swu321 2626-ece 250608 Nov 12 15:46 aomdec -rwxr-xr-x 2 swu321 2626-ece 335816 Nov 12 15:46 aomenc -rwxr-xr-x 2 swu321 2626-ece 42976 Sep 1 18:27 aserver -rwxr-xr-x 2 swu321 2626-ece 26472 Aug 24 2022 asn1Coding -rwxr-xr-x 2 swu321 2626-ece 31232 Aug 24 2022 asn1Decoding -rwxr-xr-x 2 swu321 2626-ece 17856 Aug 24 2022 asn1Parser -rwxr-xr-x 2 swu321 2626-ece 890656 Oct 10 23:40 assistant -rwxr-xr-x 2 swu321 2626-ece 16928 Mar 9 2022 atst -rwxr-xr-x 1 swu321 2626-ece 17024 Nov 16 12:39 attr -rwxr-xr-x 1 swu321 2626-ece 27340 Nov 16 12:39 autopoint -rwxr-xr-x 2 swu321 2626-ece 43824 Oct 10 23:40 balsam -rwxr-xr-x 2 swu321 2626-ece 34664 Sep 29 08:20 brotli -rwxr-xr-x 2 swu321 2626-ece 300936 Nov 6 09:12 bunzip2 -rwxr-xr-x 2 swu321 2626-ece 300936 Nov 6 09:12 bzcat lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 bzcmp -> bzdiff -rwxr-xr-x 2 swu321 2626-ece 2140 Nov 6 09:12 bzdiff lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 bzegrep -> bzgrep lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 bzfgrep -> bzgrep -rwxr-xr-x 2 swu321 2626-ece 2054 Nov 6 09:12 bzgrep -rwxr-xr-x 2 swu321 2626-ece 300936 Nov 6 09:12 bzip2 -rwxr-xr-x 2 swu321 2626-ece 31344 Nov 6 09:12 bzip2recover lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 bzless -> bzmore -rwxr-xr-x 2 swu321 2626-ece 1259 Nov 6 09:12 bzmore -rwxr-xr-x 1 swu321 2626-ece 3150 Nov 16 12:39 cairo-trace -rwxr-xr-x 2 swu321 2626-ece 48120 Oct 10 23:40 canbusutil lrwxrwxrwx 1 swu321 2626-ece 3 Nov 16 12:39 captoinfo -> tic -rwxr-xr-x 2 swu321 2626-ece 41560 Oct 20 09:28 cct -rwxr-xr-x 2 swu321 2626-ece 226920 Sep 29 2022 certtool -rwxr-xr-x 2 swu321 2626-ece 193304 Oct 2 19:40 certutil -rwxr-xr-x 2 swu321 2626-ece 105096 Sep 11 19:29 cjpeg -rwxr-xr-x 2 swu321 2626-ece 14336 Oct 31 07:20 clear -rwxr-xr-x 2 swu321 2626-ece 34144 Aug 30 09:37 cmpfillin -rwxr-xr-x 1 swu321 2626-ece 851 Nov 16 12:39 compile_et -rwxr-xr-x 1 swu321 2626-ece 6885 Nov 16 12:39 c_rehash -rwxr-xr-x 2 swu321 2626-ece 55040 Oct 20 09:28 cs2cs -rwxr-xr-x 1 swu321 2626-ece 2966 Nov 16 12:39 cups-config -rwxr-xr-x 1 swu321 2626-ece 8091 Nov 16 12:39 curl-config -rwxr-xr-x 2 swu321 2626-ece 988 Oct 4 01:31 custom_gcc_64.sh -rwxr-xr-x 2 swu321 2626-ece 122 Oct 4 01:31 custom.sh -rwxr-xr-x 2 swu321 2626-ece 49320 Jun 2 04:49 dav1d -rwxr-xr-x 2 swu321 2626-ece 17064 Dec 21 2021 dbus-cleanup-sockets -rwxr-xr-x 1 swu321 2626-ece 276208 Nov 16 12:39 dbus-daemon -rwxr-xr-x 1 swu321 2626-ece 30512 Nov 16 12:39 dbus-launch -rwxr-xr-x 2 swu321 2626-ece 32056 Dec 21 2021 dbus-monitor -rwxr-xr-x 2 swu321 2626-ece 16784 Dec 21 2021 dbus-run-session -rwxr-xr-x 2 swu321 2626-ece 36176 Dec 21 2021 dbus-send -rwxr-xr-x 2 swu321 2626-ece 31400 Dec 21 2021 dbus-test-tool -rwxr-xr-x 2 swu321 2626-ece 17384 Dec 21 2021 dbus-update-activation-environme nt -rwxr-xr-x 2 swu321 2626-ece 16560 Dec 21 2021 dbus-uuidgen -rwxr-xr-x 2 swu321 2626-ece 30936 Sep 29 06:31 dcraw_emu -rwxr-xr-x 2 swu321 2626-ece 16496 Sep 29 06:31 dcraw_half -rwxr-xr-x 2 swu321 2626-ece 39000 Aug 24 14:10 derb -rwxr-xr-x 2 swu321 2626-ece 499472 Oct 10 23:40 designer -rwxr-xr-x 2 swu321 2626-ece 17064 Mar 9 2022 dggath -rwxr-xr-x 2 swu321 2626-ece 26560 Mar 9 2022 dgmap -rwxr-xr-x 2 swu321 2626-ece 22184 Mar 9 2022 dgord -rwxr-xr-x 2 swu321 2626-ece 26592 Mar 9 2022 dgpart -rwxr-xr-x 2 swu321 2626-ece 16896 Mar 9 2022 dgscat -rwxr-xr-x 2 swu321 2626-ece 16976 Mar 9 2022 dgtst -rwxr-xr-x 2 swu321 2626-ece 62920 Sep 11 19:29 djpeg -rwxr-xr-x 2 swu321 2626-ece 21240 Nov 6 14:13 dumpsexp -rwxr-xr-x 1 swu321 2626-ece 4202 Nov 16 12:39 env.sh -rwxr-xr-x 1 swu321 2626-ece 41136 Nov 16 12:39 envsubst lrwxrwxrwx 1 swu321 2626-ece 17 Nov 16 12:40 ExpToCasExe -> ExpToCasExe-7.7.2 -rwxr-xr-x 2 swu321 2626-ece 96440 Oct 4 02:38 ExpToCasExe-7.7.2 -rwxr-xr-x 2 swu321 2626-ece 23360 Sep 27 14:07 exr2aces -rwxr-xr-x 2 swu321 2626-ece 75752 Sep 27 14:07 exrenvmap -rwxr-xr-x 2 swu321 2626-ece 38752 Sep 27 14:07 exrheader -rwxr-xr-x 2 swu321 2626-ece 16536 Sep 27 14:07 exrinfo -rwxr-xr-x 2 swu321 2626-ece 28096 Sep 27 14:07 exrmakepreview -rwxr-xr-x 2 swu321 2626-ece 89600 Sep 27 14:07 exrmaketiled -rwxr-xr-x 2 swu321 2626-ece 109408 Sep 27 14:07 exrmultipart -rwxr-xr-x 2 swu321 2626-ece 56768 Sep 27 14:07 exrmultiview -rwxr-xr-x 2 swu321 2626-ece 71776 Sep 27 14:07 exrstdattr -rwxr-xr-x 1 swu321 2626-ece 284 Nov 16 12:39 f2py -rwxr-xr-x 2 swu321 2626-ece 22224 Jan 27 2023 fc-cache -rwxr-xr-x 2 swu321 2626-ece 21816 Jan 27 2023 fc-cat -rwxr-xr-x 2 swu321 2626-ece 16688 Jan 27 2023 fc-conflist -rwxr-xr-x 2 swu321 2626-ece 17048 Jan 27 2023 fc-list -rwxr-xr-x 2 swu321 2626-ece 21520 Jan 27 2023 fc-match -rwxr-xr-x 2 swu321 2626-ece 17024 Jan 27 2023 fc-pattern -rwxr-xr-x 2 swu321 2626-ece 16856 Jan 27 2023 fc-query -rwxr-xr-x 2 swu321 2626-ece 17144 Jan 27 2023 fc-scan -rwxr-xr-x 2 swu321 2626-ece 17112 Jan 27 2023 fc-validate -rwxr-xr-x 1 swu321 2626-ece 325792 Nov 16 12:39 ffmpeg -rwxr-xr-x 1 swu321 2626-ece 175168 Nov 16 12:39 ffprobe -rwxr-xr-x 2 swu321 2626-ece 65640 Jun 12 11:47 fftwf-wisdom -rwxr-xr-x 2 swu321 2626-ece 65640 Jun 12 11:47 fftwl-wisdom -rwxr-xr-x 2 swu321 2626-ece 65592 Jun 12 11:47 fftw-wisdom -rwxr-xr-x 2 swu321 2626-ece 2282 Jun 12 11:44 fftw-wisdom-to-conf -rwxr-xr-x 2 swu321 2626-ece 6344 Nov 11 2022 fixqt4headers.pl -rwxr-xr-x 2 swu321 2626-ece 251688 Jun 26 03:45 flac -rwxr-xr-x 1 swu321 2626-ece 10971 Nov 16 12:39 fltk-config -rwxr-xr-x 1 swu321 2626-ece 695192 Nov 16 12:39 fluid -rwxr-xr-x 1 swu321 2626-ece 253 Nov 16 12:39 fonttools -rwxr-xr-x 1 swu321 2626-ece 5375 Nov 16 12:39 freetype-config -rwxr-xr-x 2 swu321 2626-ece 50736 Nov 3 2020 fribidi -rwxr-xr-x 1 swu321 2626-ece 253 Nov 16 12:40 futurize -rwxr-xr-x 1 swu321 2626-ece 26720 Nov 16 12:39 gapplication -rwxr-xr-x 2 swu321 2626-ece 16712 Mar 9 2022 gbase -rwxr-xr-x 2 swu321 2626-ece 17456 Mar 9 2022 gcv -rwxr-xr-x 1 swu321 2626-ece 64560 Nov 16 12:39 gdbus -rwxr-xr-x 1 swu321 2626-ece 2075 Nov 16 12:39 gdbus-codegen -rwxr-xr-x 2 swu321 2626-ece 22152 Aug 24 14:10 genbrk -rwxr-xr-x 2 swu321 2626-ece 17448 Aug 24 14:10 gencfu -rwxr-xr-x 2 swu321 2626-ece 35136 Aug 24 14:10 gencnval -rwxr-xr-x 2 swu321 2626-ece 37496 Aug 24 14:10 gendict -rwxr-xr-x 2 swu321 2626-ece 199440 Aug 24 14:10 genrb -rwxr-xr-x 2 swu321 2626-ece 26952 Oct 20 09:28 geod -rwxr-xr-x 1 swu321 2626-ece 27712 Nov 16 12:39 getfattr -rwxr-xr-x 1 swu321 2626-ece 40680 Nov 16 12:39 gettext -rwxr-xr-x 1 swu321 2626-ece 42305 Nov 16 12:39 gettextize -rwxr-xr-x 2 swu321 2626-ece 5190 Oct 13 2022 gettext.sh -rwxr-xr-x 2 swu321 2626-ece 43976 Oct 20 09:28 gie -rwxr-xr-x 2 swu321 2626-ece 30840 Aug 20 16:32 gif2h5 -rwxr-xr-x 2 swu321 2626-ece 27704 Sep 25 13:05 gif2hdf -rwxr-xr-x 1 swu321 2626-ece 114792 Nov 16 12:39 gio -rwxr-xr-x 2 swu321 2626-ece 21552 Nov 15 16:18 gio-querymodules -rwxr-xr-x 2 swu321 2626-ece 812384 Dec 4 2020 glewinfo -rwxr-xr-x 1 swu321 2626-ece 55160 Nov 16 12:39 glib-compile-resources -rwxr-xr-x 1 swu321 2626-ece 64368 Nov 16 12:39 glib-compile-schemas -rwxr-xr-x 2 swu321 2626-ece 41107 Nov 15 16:11 glib-genmarshal -rwxr-xr-x 1 swu321 2626-ece 5532 Nov 16 12:39 glib-gettextize -rwxr-xr-x 2 swu321 2626-ece 31157 Nov 15 16:11 glib-mkenums -rwxr-xr-x 2 swu321 2626-ece 26840 Mar 9 2022 gmap -rwxr-xr-x 2 swu321 2626-ece 16552 Mar 9 2022 gmk_hy -rwxr-xr-x 2 swu321 2626-ece 16664 Mar 9 2022 gmk_m2 -rwxr-xr-x 2 swu321 2626-ece 16656 Mar 9 2022 gmk_m3 -rwxr-xr-x 2 swu321 2626-ece 16800 Mar 9 2022 gmk_msh -rwxr-xr-x 2 swu321 2626-ece 16600 Mar 9 2022 gmk_ub2 -rwxr-xr-x 2 swu321 2626-ece 21408 Mar 9 2022 gmtst -rwxr-xr-x 2 swu321 2626-ece 159224 Sep 29 2022 gnutls-cli -rwxr-xr-x 2 swu321 2626-ece 107184 Sep 29 2022 gnutls-cli-debug -rwxr-xr-x 2 swu321 2626-ece 114584 Sep 29 2022 gnutls-serv -rwxr-xr-x 2 swu321 2626-ece 16584 Nov 15 16:19 gobject-query -rwxr-xr-x 2 swu321 2626-ece 21648 Mar 9 2022 gord -rwxr-xr-x 2 swu321 2626-ece 21280 Mar 9 2022 gotst -rwxr-xr-x 2 swu321 2626-ece 40384 Mar 9 2022 gout -rwxr-xr-x 2 swu321 2626-ece 26792 Mar 9 2022 gpart -rwxr-xr-x 1 swu321 2626-ece 43000 Nov 16 12:39 gpg-error -rwxr-xr-x 2 swu321 2626-ece 16426 Jun 17 01:30 gpgrt-config -rwxr-xr-x 2 swu321 2626-ece 55232 Aug 30 09:37 gpmetis -rwxr-xr-x 2 swu321 2626-ece 30072 Aug 30 09:37 graphchk -rwxr-xr-x 1 swu321 2626-ece 25768 Nov 16 12:39 gresource -rwxr-xr-x 2 swu321 2626-ece 16976 Mar 9 2022 gscat -rwxr-xr-x 1 swu321 2626-ece 36848 Nov 16 12:39 gsettings -rwxr-xr-x 2 swu321 2626-ece 31928 Aug 15 07:09 gss-client -rwxr-xr-x 1 swu321 2626-ece 28040 Nov 16 12:39 gst-device-monitor-1.0 -rwxr-xr-x 2 swu321 2626-ece 43200 Nov 13 23:27 gst-discoverer-1.0 -rwxr-xr-x 1 swu321 2626-ece 75192 Nov 16 12:39 gst-inspect-1.0 -rwxr-xr-x 1 swu321 2626-ece 48216 Nov 16 12:39 gst-launch-1.0 -rwxr-xr-x 1 swu321 2626-ece 56960 Nov 16 12:39 gst-play-1.0 -rwxr-xr-x 1 swu321 2626-ece 46520 Nov 16 12:39 gst-stats-1.0 -rwxr-xr-x 1 swu321 2626-ece 21984 Nov 16 12:39 gst-typefind-1.0 -rwxr-xr-x 2 swu321 2626-ece 32288 Nov 15 16:19 gtester -rwxr-xr-x 2 swu321 2626-ece 19095 Nov 15 16:11 gtester-report -rwxr-xr-x 2 swu321 2626-ece 16760 Mar 9 2022 gtst -rwxr-xr-x 2 swu321 2626-ece 552664 Feb 8 2023 h264dec -rwxr-xr-x 2 swu321 2626-ece 797768 Feb 8 2023 h264enc -rwxr-xr-x 1 swu321 2626-ece 8444 Nov 16 12:39 h4cc -rwxr-xr-x 2 swu321 2626-ece 39072 Sep 25 13:05 h4_ncdump -rwxr-xr-x 2 swu321 2626-ece 71584 Sep 25 13:05 h4_ncgen -rwxr-xr-x 2 swu321 2626-ece 3670 Sep 25 13:05 h4redeploy -rwxr-xr-x 2 swu321 2626-ece 30872 Aug 20 16:32 h52gif -rwxr-xr-x 1 swu321 2626-ece 13999 Nov 16 12:39 h5c++ -rwxr-xr-x 2 swu321 2626-ece 63880 Aug 20 16:32 h5clear -rwxr-xr-x 2 swu321 2626-ece 72136 Aug 20 16:32 h5copy -rwxr-xr-x 2 swu321 2626-ece 26616 Aug 20 16:32 h5debug -rwxr-xr-x 2 swu321 2626-ece 14328 Aug 20 16:32 h5delete -rwxr-xr-x 2 swu321 2626-ece 200096 Aug 20 16:32 h5diff -rwxr-xr-x 2 swu321 2626-ece 267520 Aug 20 16:32 h5dump -rwxr-xr-x 2 swu321 2626-ece 63880 Aug 20 16:32 h5format_convert -rwxr-xr-x 1 swu321 2626-ece 8265 Nov 16 12:39 h5fuse.sh -rwxr-xr-x 2 swu321 2626-ece 84576 Aug 20 16:32 h5import -rwxr-xr-x 2 swu321 2626-ece 35064 Aug 20 16:32 h5jam -rwxr-xr-x 2 swu321 2626-ece 199392 Aug 20 16:32 h5ls -rwxr-xr-x 2 swu321 2626-ece 63976 Aug 20 16:32 h5mkgrp -rwxr-xr-x 1 swu321 2626-ece 13782 Nov 16 12:39 h5pcc -rwxr-xr-x 2 swu321 2626-ece 84456 Aug 20 16:32 h5perf -rwxr-xr-x 2 swu321 2626-ece 59968 Aug 20 16:32 h5perf_serial -rwxr-xr-x 1 swu321 2626-ece 13066 Nov 16 12:39 h5pfc -rwxr-xr-x 2 swu321 2626-ece 5832 Aug 20 16:17 h5redeploy -rwxr-xr-x 2 swu321 2626-ece 191776 Aug 20 16:32 h5repack -rwxr-xr-x 2 swu321 2626-ece 18424 Aug 20 16:32 h5repart -rwxr-xr-x 2 swu321 2626-ece 85896 Aug 20 16:32 h5stat -rwxr-xr-x 2 swu321 2626-ece 30968 Aug 20 16:32 h5unjam -rwxr-xr-x 2 swu321 2626-ece 162752 Aug 20 16:32 h5watch -rwxr-xr-x 2 swu321 2626-ece 17208 Sep 29 06:31 half_mt -rwxr-xr-x 2 swu321 2626-ece 65896 Nov 13 20:28 hb-info -rwxr-xr-x 2 swu321 2626-ece 52128 Nov 13 20:28 hb-ot-shape-closure -rwxr-xr-x 2 swu321 2626-ece 62528 Nov 13 20:28 hb-shape -rwxr-xr-x 2 swu321 2626-ece 56232 Nov 13 20:28 hb-subset -rwxr-xr-x 2 swu321 2626-ece 88264 Nov 13 20:28 hb-view -rwxr-xr-x 2 swu321 2626-ece 20448 Sep 25 13:05 hdf24to8 -rwxr-xr-x 2 swu321 2626-ece 21992 Sep 25 13:05 hdf2gif -rwxr-xr-x 2 swu321 2626-ece 16616 Sep 25 13:05 hdf2jpeg -rwxr-xr-x 2 swu321 2626-ece 16616 Sep 25 13:05 hdf8to24 -rwxr-xr-x 2 swu321 2626-ece 21208 Sep 25 13:05 hdfcomp -rwxr-xr-x 2 swu321 2626-ece 69312 Sep 25 13:05 hdfed -rwxr-xr-x 2 swu321 2626-ece 59080 Sep 25 13:05 hdfimport -rwxr-xr-x 2 swu321 2626-ece 26072 Sep 25 13:05 hdfls -rwxr-xr-x 2 swu321 2626-ece 21752 Sep 25 13:05 hdfpack -rwxr-xr-x 2 swu321 2626-ece 16208 Sep 25 13:05 hdftopal -rwxr-xr-x 2 swu321 2626-ece 17000 Sep 25 13:05 hdftor8 -rwxr-xr-x 2 swu321 2626-ece 16576 Sep 25 13:05 hdfunpac -rwxr-xr-x 2 swu321 2626-ece 71264 Sep 25 13:05 hdiff -rwxr-xr-x 2 swu321 2626-ece 149224 Sep 25 13:05 hdp -rwxr-xr-x 2 swu321 2626-ece 21632 Nov 6 14:13 hmac256 -rwxr-xr-x 2 swu321 2626-ece 80608 Sep 25 13:05 hrepack -rwxr-xr-x 2 swu321 2626-ece 45992 Sep 12 11:30 hwloc-annotate -rwxr-xr-x 2 swu321 2626-ece 52912 Sep 12 11:30 hwloc-bind -rwxr-xr-x 2 swu321 2626-ece 58088 Sep 12 11:30 hwloc-calc -rwxr-xr-x 1 swu321 2626-ece 4381 Nov 16 12:39 hwloc-compress-dir -rwxr-xr-x 2 swu321 2626-ece 17048 Sep 12 11:30 hwloc-diff -rwxr-xr-x 2 swu321 2626-ece 30680 Sep 12 11:30 hwloc-distrib -rwxr-xr-x 2 swu321 2626-ece 25752 Sep 12 11:30 hwloc-gather-cpuid -rwxr-xr-x 1 swu321 2626-ece 11638 Nov 16 12:39 hwloc-gather-topology -rwxr-xr-x 2 swu321 2626-ece 61832 Sep 12 11:30 hwloc-info lrwxrwxrwx 1 swu321 2626-ece 18 Nov 16 12:39 hwloc-ls -> lstopo-no-graphics -rwxr-xr-x 2 swu321 2626-ece 17120 Sep 12 11:30 hwloc-patch -rwxr-xr-x 2 swu321 2626-ece 36192 Sep 12 11:30 hwloc-ps -rwxr-xr-x 2 swu321 2626-ece 1092240 Aug 5 08:58 hydra_nameserver -rwxr-xr-x 2 swu321 2626-ece 1084528 Aug 5 08:58 hydra_persist -rwxr-xr-x 2 swu321 2626-ece 1455704 Aug 5 08:58 hydra_pmi_proxy -rwxr-xr-x 1 swu321 2626-ece 44640 Nov 16 12:39 iconv -rwxr-xr-x 1 swu321 2626-ece 22805 Nov 16 12:39 icu-config -rwxr-xr-x 2 swu321 2626-ece 75152 Aug 24 14:10 icuexportdata -rwxr-xr-x 2 swu321 2626-ece 17072 Aug 24 14:10 icuinfo lrwxrwxrwx 1 swu321 2626-ece 7 Nov 16 12:39 idle3 -> idle3.9 -rwxr-xr-x 1 swu321 2626-ece 126 Nov 16 12:39 idle3.9 -rwxr-xr-x 2 swu321 2626-ece 31776 Oct 23 2022 idn2 -rwxr-xr-x 2 swu321 2626-ece 63560 Oct 31 07:20 infocmp lrwxrwxrwx 1 swu321 2626-ece 3 Nov 16 12:39 infotocap -> tic lrwxrwxrwx 1 swu321 2626-ece 4 Nov 16 12:39 invgeod -> geod lrwxrwxrwx 1 swu321 2626-ece 4 Nov 16 12:39 invproj -> proj -rwxr-xr-x 2 swu321 2626-ece 125000 Jul 12 16:55 ippeveprinter -rwxr-xr-x 2 swu321 2626-ece 79864 Jul 12 16:55 ipptool -rwxr-xr-x 2 swu321 2626-ece 16872 Sep 25 13:05 jpeg2hdf -rwxr-xr-x 2 swu321 2626-ece 60320 Sep 11 19:29 jpegtran -rwxr-xr-x 2 swu321 2626-ece 42520 Sep 29 02:41 jpgicc -rwxr-xr-x 2 swu321 2626-ece 32008 Dec 6 2020 JxrDecApp -rwxr-xr-x 2 swu321 2626-ece 33680 Dec 6 2020 JxrEncApp -rwxr-xr-x 2 swu321 2626-ece 2004 Aug 15 07:09 k5srvutil -rwxr-xr-x 2 swu321 2626-ece 102968 Aug 15 07:09 kadmin -rwxr-xr-x 2 swu321 2626-ece 17120 Aug 15 07:09 kdestroy -rwxr-xr-x 2 swu321 2626-ece 76064 Mar 1 2022 keyctl -rwxr-xr-x 2 swu321 2626-ece 41376 Aug 15 07:09 kinit -rwxr-xr-x 2 swu321 2626-ece 36472 Aug 15 07:09 klist -rwxr-xr-x 2 swu321 2626-ece 21528 Aug 15 07:09 kpasswd -rwxr-xr-x 1 swu321 2626-ece 6823 Nov 16 12:39 krb5-config -rw-r--r-- 2 swu321 2626-ece 65272 Aug 15 07:09 ksu -rwxr-xr-x 2 swu321 2626-ece 16776 Aug 15 07:09 kswitch -rwxr-xr-x 2 swu321 2626-ece 42648 Aug 15 07:09 ktutil -rwxr-xr-x 2 swu321 2626-ece 27528 Aug 15 07:09 kvno -rwxr-xr-x 2 swu321 2626-ece 383168 Oct 5 2022 lame -rwxr-xr-x 2 swu321 2626-ece 282656 Oct 10 23:40 lconvert -rwxr-xr-x 2 swu321 2626-ece 31088 Sep 16 23:44 libdeflate-gunzip -rwxr-xr-x 2 swu321 2626-ece 31088 Sep 16 23:44 libdeflate-gzip -rwxr-xr-x 1 swu321 2626-ece 4531 Nov 16 12:39 libgcrypt-config -rwxr-xr-x 1 swu321 2626-ece 2354 Nov 16 12:39 libpng16-config lrwxrwxrwx 1 swu321 2626-ece 15 Nov 16 12:39 libpng-config -> libpng16-config -rwxr-xr-x 2 swu321 2626-ece 1346744 Oct 10 23:40 linguist -rwxr-xr-x 2 swu321 2626-ece 31720 Sep 29 02:41 linkicc -rwxr-xr-x 2 swu321 2626-ece 291200 Oct 10 23:40 lprodump -rwxr-xr-x 2 swu321 2626-ece 307552 Oct 10 23:40 lrelease -rwxr-xr-x 2 swu321 2626-ece 27184 Oct 10 23:40 lrelease-pro lrwxrwxrwx 1 swu321 2626-ece 18 Nov 16 12:39 lstopo -> lstopo-no-graphics -rwxr-xr-x 2 swu321 2626-ece 138064 Sep 12 11:30 lstopo-no-graphics -rwxr-xr-x 2 swu321 2626-ece 844616 Oct 10 23:40 lupdate -rwxr-xr-x 2 swu321 2626-ece 23064 Oct 10 23:40 lupdate-pro -rwxr-xr-x 2 swu321 2626-ece 211008 Jan 26 2023 lz4 lrwxrwxrwx 1 swu321 2626-ece 3 Nov 16 12:39 lz4c -> lz4 lrwxrwxrwx 1 swu321 2626-ece 3 Nov 16 12:39 lz4cat -> lz4 lrwxrwxrwx 1 swu321 2626-ece 2 Nov 16 12:39 lzcat -> xz lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 lzcmp -> xzdiff lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 lzdiff -> xzdiff lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 lzegrep -> xzgrep lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 lzfgrep -> xzgrep lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 lzgrep -> xzgrep lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 lzless -> xzless lrwxrwxrwx 1 swu321 2626-ece 2 Nov 16 12:39 lzma -> xz -rwxr-xr-x 2 swu321 2626-ece 17368 Aug 12 2022 lzmadec -rwxr-xr-x 1 swu321 2626-ece 17280 Nov 16 12:39 lzmainfo lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 lzmore -> xzmore -rwxr-xr-x 2 swu321 2626-ece 38000 Aug 30 09:37 m2gmetis -rwxr-xr-x 2 swu321 2626-ece 67688 Aug 24 14:10 makeconv -rwxr-xr-x 1 swu321 2626-ece 257 Nov 16 12:39 mayavi2 -rwxr-xr-x 2 swu321 2626-ece 17192 Mar 9 2022 mcv -rwxr-xr-x 2 swu321 2626-ece 21976 Sep 29 06:31 mem_image -rwxr-xr-x 2 swu321 2626-ece 31184 Oct 10 23:40 meshdebug -rwxr-xr-x 2 swu321 2626-ece 153376 Jun 26 03:45 metaflac -rwxr-xr-x 2 swu321 2626-ece 16680 Mar 9 2022 mmk_m2 -rwxr-xr-x 2 swu321 2626-ece 16680 Mar 9 2022 mmk_m3 -rwxr-xr-x 2 swu321 2626-ece 916408 Oct 10 23:40 moc -rwxr-xr-x 2 swu321 2626-ece 21552 Mar 9 2022 mord -rwxr-xr-x 2 swu321 2626-ece 199832 Oct 2 12:53 mpg123 -rwxr-xr-x 2 swu321 2626-ece 33032 Oct 2 12:53 mpg123-id3dump -rwxr-xr-x 2 swu321 2626-ece 23792 Oct 2 12:53 mpg123-strip lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 mpic++ -> mpicxx -rwxr-xr-x 2 swu321 2626-ece 22064 Nov 6 14:13 mpicalc -rwxr-xr-x 1 swu321 2626-ece 11726 Nov 16 12:39 mpicc -rwxr-xr-x 2 swu321 2626-ece 16384 Aug 5 08:58 mpichversion -rwxr-xr-x 1 swu321 2626-ece 11324 Nov 16 12:39 mpicxx lrwxrwxrwx 1 swu321 2626-ece 13 Nov 16 12:39 mpiexec -> mpiexec.hydra -rwxr-xr-x 1 swu321 2626-ece 1913800 Nov 16 12:39 mpiexec.hydra lrwxrwxrwx 1 swu321 2626-ece 7 Nov 16 12:39 mpif77 -> mpifort lrwxrwxrwx 1 swu321 2626-ece 7 Nov 16 12:39 mpif90 -> mpifort -rwxr-xr-x 1 swu321 2626-ece 14128 Nov 16 12:39 mpifort lrwxrwxrwx 1 swu321 2626-ece 13 Nov 16 12:39 mpirun -> mpiexec.hydra -rwxr-xr-x 2 swu321 2626-ece 30800 Aug 5 08:58 mpivars -rwxr-xr-x 2 swu321 2626-ece 54936 Aug 30 09:37 mpmetis -rwxr-xr-x 1 swu321 2626-ece 30648 Nov 16 12:39 msgattrib -rwxr-xr-x 1 swu321 2626-ece 26624 Nov 16 12:39 msgcat -rwxr-xr-x 1 swu321 2626-ece 31520 Nov 16 12:39 msgcmp -rwxr-xr-x 1 swu321 2626-ece 26640 Nov 16 12:39 msgcomm -rwxr-xr-x 1 swu321 2626-ece 26272 Nov 16 12:39 msgconv -rwxr-xr-x 1 swu321 2626-ece 26256 Nov 16 12:39 msgen -rwxr-xr-x 1 swu321 2626-ece 26272 Nov 16 12:39 msgexec -rwxr-xr-x 1 swu321 2626-ece 35848 Nov 16 12:39 msgfilter -rwxr-xr-x 1 swu321 2626-ece 101936 Nov 16 12:39 msgfmt -rwxr-xr-x 1 swu321 2626-ece 127480 Nov 16 12:39 msggrep -rwxr-xr-x 1 swu321 2626-ece 80192 Nov 16 12:39 msginit -rwxr-xr-x 1 swu321 2626-ece 80736 Nov 16 12:39 msgmerge -rwxr-xr-x 1 swu321 2626-ece 40968 Nov 16 12:39 msgunfmt -rwxr-xr-x 1 swu321 2626-ece 26520 Nov 16 12:39 msguniq -rwxr-xr-x 2 swu321 2626-ece 35376 Apr 19 2021 mtest -rwxr-xr-x 2 swu321 2626-ece 16752 Mar 9 2022 mtst -rwxr-xr-x 2 swu321 2626-ece 16888 Sep 29 06:31 multirender_test -rwxr-xr-x 1 swu321 2626-ece 9128 Nov 16 12:39 nc-config -rwxr-xr-x 2 swu321 2626-ece 73608 Sep 1 11:21 nccopy -rwxr-xr-x 2 swu321 2626-ece 116728 Sep 1 11:21 ncdump -rwxr-xr-x 2 swu321 2626-ece 249008 Sep 1 11:21 ncgen -rwxr-xr-x 2 swu321 2626-ece 101640 Sep 1 11:21 ncgen3 -rwxr-xr-x 1 swu321 2626-ece 9033 Nov 16 12:39 ncurses6-config -rwxr-xr-x 1 swu321 2626-ece 9056 Nov 16 12:39 ncursesw6-config -rwxr-xr-x 2 swu321 2626-ece 48232 Aug 30 09:37 ndmetis -rwxr-xr-x 2 swu321 2626-ece 88624 Jul 29 2022 nettle-hash -rwxr-xr-x 2 swu321 2626-ece 67528 Jul 29 2022 nettle-lfib-stream -rwxr-xr-x 2 swu321 2626-ece 88328 Jul 29 2022 nettle-pbkdf2 -rwxr-xr-x 1 swu321 2626-ece 40704 Nov 16 12:39 ngettext -rwxr-xr-x 2 swu321 2626-ece 266848 Nov 8 05:47 nghttp -rwxr-xr-x 2 swu321 2626-ece 192704 Nov 8 05:47 nghttpd -rwxr-xr-x 1 swu321 2626-ece 1316656 Nov 16 12:39 nghttpx -rwxr-xr-x 1 swu321 2626-ece 271 Nov 16 12:40 normalizer -rwxr-xr-x 1 swu321 2626-ece 2853 Nov 16 12:39 nspr-config -rwxr-xr-x 1 swu321 2626-ece 2616 Nov 16 12:39 nss-config -rwxr-xr-x 2 swu321 2626-ece 64864 Sep 29 2022 ocsptool -rwxr-xr-x 2 swu321 2626-ece 20778 Sep 28 2022 onelab.py -rwxr-xr-x 2 swu321 2626-ece 1107680 Oct 24 12:26 openssl -rwxr-xr-x 2 swu321 2626-ece 156568 Sep 14 12:18 opj_compress -rwxr-xr-x 2 swu321 2626-ece 148232 Sep 14 12:18 opj_decompress -rwxr-xr-x 2 swu321 2626-ece 134840 Sep 14 12:18 opj_dump -rwxr-xr-x 2 swu321 2626-ece 88504 Oct 2 12:53 out123 -rwxr-xr-x 1 swu321 2626-ece 147376 Nov 16 12:39 p11-kit -rwxr-xr-x 2 swu321 2626-ece 245456 Sep 29 2022 p11tool -rwxr-xr-x 1 swu321 2626-ece 57552 Nov 16 12:39 pacat -rwxr-xr-x 1 swu321 2626-ece 108120 Nov 16 12:39 pactl -rwxr-xr-x 1 swu321 2626-ece 2291 Nov 16 12:39 padsp -rwxr-xr-x 2 swu321 2626-ece 2349 Jun 21 2022 pa-info -rwxr-xr-x 2 swu321 2626-ece 16208 Sep 25 13:05 paltohdf lrwxrwxrwx 1 swu321 2626-ece 5 Nov 16 12:39 pamon -> pacat lrwxrwxrwx 1 swu321 2626-ece 5 Nov 16 12:39 paplay -> pacat lrwxrwxrwx 1 swu321 2626-ece 5 Nov 16 12:39 parec -> pacat lrwxrwxrwx 1 swu321 2626-ece 5 Nov 16 12:39 parecord -> pacat -rwxr-xr-x 2 swu321 2626-ece 3578 Aug 5 08:58 parkill -rwxr-xr-x 2 swu321 2626-ece 44320 Apr 19 2021 parmetis -rwxr-xr-x 1 swu321 2626-ece 255 Nov 16 12:40 pasteurize -rwxr-xr-x 1 swu321 2626-ece 2206 Nov 16 12:39 pcre2-config -rwxr-xr-x 2 swu321 2626-ece 667160 Oct 29 16:21 pcre2grep -rwxr-xr-x 2 swu321 2626-ece 1755192 Oct 29 16:21 pcre2_jit_test -rwxr-xr-x 2 swu321 2626-ece 618496 Oct 29 16:21 pcre2posix_test -rwxr-xr-x 2 swu321 2626-ece 2013712 Oct 29 16:21 pcre2test -rwxr-xr-x 2 swu321 2626-ece 26208 Dec 13 2021 pddrive -rwxr-xr-x 2 swu321 2626-ece 26376 Dec 13 2021 pddrive_spawn -rwxr-xr-x 1 swu321 2626-ece 52216 Nov 16 12:39 pg_config -rwxr-xr-x 2 swu321 2626-ece 204192 Aug 20 16:32 ph5diff -rwxr-xr-x 1 swu321 2626-ece 259 Nov 16 12:40 pip -rwxr-xr-x 1 swu321 2626-ece 259 Nov 16 12:40 pip3 -rwxr-xr-x 2 swu321 2626-ece 69408 Oct 10 23:40 pixeltool -rwxr-xr-x 2 swu321 2626-ece 81984 Oct 2 19:40 pk12util -rwxr-xr-x 2 swu321 2626-ece 111856 Jul 29 2022 pkcs1-conv -rwxr-xr-x 2 swu321 2626-ece 55000 Aug 24 14:10 pkgdata -rwxr-xr-x 2 swu321 2626-ece 56440 Nov 21 2022 pngfix -rwxr-xr-x 2 swu321 2626-ece 16024 Nov 21 2022 png-fix-itxt -rwxr-xr-x 2 swu321 2626-ece 35472 Apr 19 2021 pometis -rwxr-xr-x 2 swu321 2626-ece 17248 Sep 29 06:31 postprocessing_benchmark -rwxr-xr-x 2 swu321 2626-ece 41992 Oct 20 09:28 proj -rwxr-xr-x 2 swu321 2626-ece 139488 Oct 20 09:28 projinfo -rwxr-xr-x 1 swu321 2626-ece 149352 Nov 16 12:39 projsync -rwxr-xr-x 2 swu321 2626-ece 22272 Sep 29 02:41 psicc -rwxr-xr-x 2 swu321 2626-ece 30608 Sep 29 2022 psktool -rwxr-xr-x 2 swu321 2626-ece 52984 Apr 19 2021 ptest lrwxrwxrwx 1 swu321 2626-ece 8 Nov 16 12:39 pydoc -> pydoc3.9 lrwxrwxrwx 1 swu321 2626-ece 8 Nov 16 12:39 pydoc3 -> pydoc3.9 -rwxr-xr-x 1 swu321 2626-ece 111 Nov 16 12:39 pydoc3.9 -rwxr-xr-x 1 swu321 2626-ece 250 Nov 16 12:39 pyftmerge -rwxr-xr-x 1 swu321 2626-ece 251 Nov 16 12:39 pyftsubset -rwxr-xr-x 1 swu321 2626-ece 253 Nov 16 12:40 pygmentize -rwxr-xr-x 1 swu321 2626-ece 98 Nov 16 12:39 pylupdate5 -rwxr-xr-x 1 swu321 2626-ece 94 Nov 16 12:39 pyrcc5 lrwxrwxrwx 1 swu321 2626-ece 9 Nov 16 12:39 python -> python3.9 lrwxrwxrwx 1 swu321 2626-ece 9 Nov 16 12:39 python3 -> python3.9 -rwxr-xr-x 1 swu321 2626-ece 16584720 Nov 16 12:39 python3.9 -rwxr-xr-x 1 swu321 2626-ece 3560 Nov 16 12:39 python3.9-config lrwxrwxrwx 1 swu321 2626-ece 16 Nov 16 12:39 python3-config -> python3.9-conf ig -rwxr-xr-x 1 swu321 2626-ece 93 Nov 16 12:39 pyuic5 -rwxr-xr-x 2 swu321 2626-ece 14480 Oct 10 23:40 qcollectiongenerator -rwxr-xr-x 2 swu321 2626-ece 68904 Oct 10 23:40 qdbus -rwxr-xr-x 2 swu321 2626-ece 294560 Oct 10 23:40 qdbuscpp2xml -rwxr-xr-x 2 swu321 2626-ece 147792 Oct 10 23:40 qdbusviewer -rwxr-xr-x 2 swu321 2626-ece 80936 Oct 10 23:40 qdbusxml2cpp -rwxr-xr-x 2 swu321 2626-ece 127240 Oct 10 23:40 qdistancefieldgenerator -rwxr-xr-x 1 swu321 2626-ece 1876456 Nov 16 12:39 qdoc -rwxr-xr-x 2 swu321 2626-ece 2286376 Oct 10 23:40 qgltf -rwxr-xr-x 2 swu321 2626-ece 167880 Oct 10 23:40 qhelpgenerator -rwxr-xr-x 2 swu321 2626-ece 138104 Oct 10 23:40 qlalr -rwxr-xr-x 2 swu321 2626-ece 28210992 Oct 10 23:40 qmake -rwxr-xr-x 2 swu321 2626-ece 89768 Oct 10 23:40 qml -rwxr-xr-x 2 swu321 2626-ece 811528 Oct 10 23:40 qmlcachegen -rwxr-xr-x 2 swu321 2626-ece 98088 Oct 10 23:40 qmleasing -rwxr-xr-x 2 swu321 2626-ece 486600 Oct 10 23:40 qmlformat -rwxr-xr-x 2 swu321 2626-ece 429960 Oct 10 23:40 qmlimportscanner -rwxr-xr-x 2 swu321 2626-ece 926024 Oct 10 23:40 qmllint -rwxr-xr-x 2 swu321 2626-ece 146256 Oct 10 23:40 qmlmin -rwxr-xr-x 2 swu321 2626-ece 131312 Oct 10 23:40 qmlplugindump -rwxr-xr-x 2 swu321 2626-ece 102016 Oct 10 23:40 qmlpreview -rwxr-xr-x 2 swu321 2626-ece 200792 Oct 10 23:40 qmlprofiler -rwxr-xr-x 2 swu321 2626-ece 56928 Oct 10 23:40 qmlscene -rwxr-xr-x 2 swu321 2626-ece 14504 Oct 10 23:40 qmltestrunner -rwxr-xr-x 2 swu321 2626-ece 31440 Oct 10 23:40 qmltime -rwxr-xr-x 2 swu321 2626-ece 101904 Oct 10 23:40 qmltyperegistrar -rwxr-xr-x 2 swu321 2626-ece 335680 Oct 10 23:40 qscxmlc -rwxr-xr-x 2 swu321 2626-ece 85256 Oct 10 23:40 qtattributionsscanner -rwxr-xr-x 1 swu321 2626-ece 221 Nov 16 12:39 qt.conf -rwxr-xr-x 2 swu321 2626-ece 78608 Oct 10 23:40 qtdiag -rwxr-xr-x 2 swu321 2626-ece 31312 Oct 10 23:40 qtpaths -rwxr-xr-x 2 swu321 2626-ece 27280 Oct 10 23:40 qtplugininfo -rwxr-xr-x 2 swu321 2626-ece 39480 Oct 10 23:40 qvkgen -rwxr-xr-x 2 swu321 2626-ece 16496 Sep 25 13:05 r8tohdf -rwxr-xr-x 2 swu321 2626-ece 39576 Sep 29 06:31 raw-identify -rwxr-xr-x 2 swu321 2626-ece 22560 Sep 29 06:31 rawtextdump -rwxr-xr-x 2 swu321 2626-ece 826328 Oct 10 23:40 rcc -rwxr-xr-x 2 swu321 2626-ece 16768 Sep 11 19:29 rdjpgcom -rwxr-xr-x 1 swu321 2626-ece 21688 Nov 16 12:39 recode-sr-latin -rwxr-xr-x 1 swu321 2626-ece 409624 Nov 16 12:39 repc lrwxrwxrwx 1 swu321 2626-ece 4 Nov 16 12:39 reset -> tset -rwxr-xr-x 2 swu321 2626-ece 16488 Sep 25 13:05 ristosds -rwxr-xr-x 2 swu321 2626-ece 21600 Aug 15 07:09 sclient -rwxr-xr-x 2 swu321 2626-ece 16312 Mar 9 2022 scotch_esmumps -rwxr-xr-x 1 swu321 2626-ece 26808 Nov 16 12:39 setfattr -rwxr-xr-x 2 swu321 2626-ece 177488 Jul 29 2022 sexp-conv -rwxr-xr-x 2 swu321 2626-ece 17296 Aug 15 07:09 sim_client -rwxr-xr-x 2 swu321 2626-ece 21528 Sep 29 06:31 simple_dcraw -rwxr-xr-x 1 swu321 2626-ece 255 Nov 16 12:39 sip-build -rwxr-xr-x 1 swu321 2626-ece 257 Nov 16 12:39 sip-distinfo -rwxr-xr-x 1 swu321 2626-ece 257 Nov 16 12:39 sip-install -rwxr-xr-x 1 swu321 2626-ece 255 Nov 16 12:39 sip-module -rwxr-xr-x 1 swu321 2626-ece 255 Nov 16 12:39 sip-sdist -rwxr-xr-x 1 swu321 2626-ece 255 Nov 16 12:39 sip-wheel -rwxr-xr-x 2 swu321 2626-ece 16656 Sep 26 13:02 sndfile-cmp -rwxr-xr-x 2 swu321 2626-ece 16792 Sep 26 13:02 sndfile-concat -rwxr-xr-x 2 swu321 2626-ece 30088 Sep 26 13:02 sndfile-convert -rwxr-xr-x 2 swu321 2626-ece 16680 Sep 26 13:02 sndfile-deinterleave -rwxr-xr-x 2 swu321 2626-ece 25272 Sep 26 13:02 sndfile-info -rwxr-xr-x 2 swu321 2626-ece 17008 Sep 26 13:02 sndfile-interleave -rwxr-xr-x 2 swu321 2626-ece 16552 Sep 26 13:02 sndfile-metadata-get -rwxr-xr-x 2 swu321 2626-ece 25856 Sep 26 13:02 sndfile-metadata-set -rwxr-xr-x 2 swu321 2626-ece 16792 Sep 26 13:02 sndfile-play -rwxr-xr-x 2 swu321 2626-ece 17000 Sep 26 13:02 sndfile-salvage -rwxr-xr-x 2 swu321 2626-ece 1816656 Nov 1 12:05 sqlite3 -rwxr-xr-x 2 swu321 2626-ece 30392 Nov 5 11:35 sqlite3_analyzer -rwxr-xr-x 2 swu321 2626-ece 31880 Sep 29 2022 srptool -rwxr-xr-x 2 swu321 2626-ece 39640 Aug 25 08:30 SvtAv1DecApp -rwxr-xr-x 2 swu321 2626-ece 112832 Aug 25 08:30 SvtAv1EncApp -rwxr-xr-x 2 swu321 2626-ece 48364 Nov 11 2022 syncqt.pl -rwxr-xr-x 2 swu321 2626-ece 22520 Oct 31 07:20 tabs lrwxrwxrwx 1 swu321 2626-ece 8 Nov 16 12:39 tclsh -> tclsh8.6 -rwxr-xr-x 2 swu321 2626-ece 16168 Nov 5 11:36 tclsh8.6 -rwxr-xr-x 2 swu321 2626-ece 92272 Oct 31 07:20 tic -rwxr-xr-x 2 swu321 2626-ece 53848 Sep 25 13:06 tiffcp -rwxr-xr-x 2 swu321 2626-ece 30616 Sep 25 13:06 tiffdump -rwxr-xr-x 2 swu321 2626-ece 31544 Sep 25 13:06 tiffinfo -rwxr-xr-x 2 swu321 2626-ece 25848 Sep 25 13:06 tiffset -rwxr-xr-x 2 swu321 2626-ece 26128 Sep 25 13:06 tiffsplit -rwxr-xr-x 2 swu321 2626-ece 41872 Sep 29 02:41 tificc -rwxr-xr-x 2 swu321 2626-ece 65856 Sep 11 19:29 tjbench -rwxr-xr-x 2 swu321 2626-ece 22520 Oct 31 07:20 toe -rwxr-xr-x 2 swu321 2626-ece 22552 Oct 31 07:20 tput -rwxr-xr-x 2 swu321 2626-ece 588696 Oct 10 23:40 tracegen -rwxr-xr-x 2 swu321 2626-ece 45936 Sep 29 02:41 transicc -rwxr-xr-x 1 swu321 2626-ece 775264 Nov 16 12:39 trust -rwxr-xr-x 2 swu321 2626-ece 30720 Oct 31 07:20 tset -rwxr-xr-x 1 swu321 2626-ece 248 Nov 16 12:39 ttx -rwxr-xr-x 1 swu321 2626-ece 254 Nov 16 12:39 tvtk_doc -rwxr-xr-x 2 swu321 2626-ece 565136 Oct 10 23:40 uic lrwxrwxrwx 1 swu321 2626-ece 3 Nov 16 12:39 unlz4 -> lz4 lrwxrwxrwx 1 swu321 2626-ece 2 Nov 16 12:39 unlzma -> xz -rwxr-xr-x 2 swu321 2626-ece 17312 Sep 29 06:31 unprocessed_raw lrwxrwxrwx 1 swu321 2626-ece 2 Nov 16 12:39 unxz -> xz lrwxrwxrwx 1 swu321 2626-ece 4 Nov 16 12:39 unzstd -> zstd -rwxr-xr-x 2 swu321 2626-ece 22048 Aug 15 07:09 uuclient -rwxr-xr-x 2 swu321 2626-ece 26672 Dec 4 2020 visualinfo -rwxr-xr-x 2 swu321 2626-ece 26000 Sep 25 13:05 vmake -rwxr-xr-x 2 swu321 2626-ece 237280 Oct 3 10:11 vpxdec -rwxr-xr-x 2 swu321 2626-ece 291640 Oct 3 10:11 vpxenc -rwxr-xr-x 2 swu321 2626-ece 26280 Sep 25 13:05 vshow -rwxr-xr-x 2 swu321 2626-ece 34712 Nov 11 16:48 vtkParseJava-9.2 -rwxr-xr-x 2 swu321 2626-ece 22168 Nov 11 16:48 vtkProbeOpenGLVersion-9.2 -rwxr-xr-x 2 swu321 2626-ece 21752 Nov 11 16:48 vtkpython -rwxr-xr-x 2 swu321 2626-ece 29808 Nov 11 16:48 vtkWrapHierarchy-9.2 -rwxr-xr-x 2 swu321 2626-ece 42712 Nov 11 16:48 vtkWrapJava-9.2 -rwxr-xr-x 2 swu321 2626-ece 105032 Nov 11 16:48 vtkWrapPython-9.2 -rwxr-xr-x 2 swu321 2626-ece 16384 Nov 11 16:48 vtkWrapPythonInit-9.2 -rwxr-xr-x 1 swu321 2626-ece 246 Nov 16 12:40 wheel lrwxrwxrwx 1 swu321 2626-ece 7 Nov 16 12:39 wish -> wish8.6 -rwxr-xr-x 2 swu321 2626-ece 16320 Nov 5 11:36 wish8.6 -rwxr-xr-x 2 swu321 2626-ece 16824 Sep 11 19:29 wrjpgcom -rwxr-xr-x 2 swu321 2626-ece 174264 Aug 12 2022 x264 -rwxr-xr-x 2 swu321 2626-ece 175528 Mar 6 2022 x265 lrwxrwxrwx 1 swu321 2626-ece 25 Nov 16 12:39 x86_64-conda_cos6-linux-gnu-ld - > x86_64-conda-linux-gnu-ld -rwxr-xr-x 2 swu321 2626-ece 2442288 Jan 27 2023 x86_64-conda-linux-gnu-ld -rwxr-xr-x 1 swu321 2626-ece 340896 Nov 16 12:39 xgettext -rwxr-xr-x 1 swu321 2626-ece 35160 Nov 16 12:39 xkbcli -rwxr-xr-x 1 swu321 2626-ece 2058 Nov 16 12:39 xml2-config -rwxr-xr-x 1 swu321 2626-ece 26720 Nov 16 12:39 xmlcatalog -rwxr-xr-x 1 swu321 2626-ece 88744 Nov 16 12:39 xmllint -rwxr-xr-x 2 swu321 2626-ece 68776 Oct 10 23:40 xmlpatterns -rwxr-xr-x 2 swu321 2626-ece 18800 Oct 10 23:40 xmlpatternsvalidator -rwxr-xr-x 2 swu321 2626-ece 41816 Mar 30 2023 xmlwf -rwxr-xr-x 1 swu321 2626-ece 95336 Nov 16 12:39 xz lrwxrwxrwx 1 swu321 2626-ece 2 Nov 16 12:39 xzcat -> xz lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 xzcmp -> xzdiff -rwxr-xr-x 2 swu321 2626-ece 17368 Aug 12 2022 xzdec -rwxr-xr-x 2 swu321 2626-ece 7307 Aug 12 2022 xzdiff lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 xzegrep -> xzgrep lrwxrwxrwx 1 swu321 2626-ece 6 Nov 16 12:39 xzfgrep -> xzgrep -rwxr-xr-x 2 swu321 2626-ece 10293 Aug 12 2022 xzgrep -rwxr-xr-x 2 swu321 2626-ece 1821 Aug 12 2022 xzless -rwxr-xr-x 2 swu321 2626-ece 2198 Aug 12 2022 xzmore -rwxr-xr-x 2 swu321 2626-ece 43824 Jun 17 01:30 yat2m -rwxr-xr-x 2 swu321 2626-ece 36256 Sep 11 03:13 zipcmp -rwxr-xr-x 2 swu321 2626-ece 22352 Sep 11 03:13 zipmerge -rwxr-xr-x 2 swu321 2626-ece 46688 Sep 11 03:13 ziptool -rwxr-xr-x 2 swu321 2626-ece 191976 Aug 27 11:46 zstd lrwxrwxrwx 1 swu321 2626-ece 4 Nov 16 12:39 zstdcat -> zstd -rwxr-xr-x 2 swu321 2626-ece 3869 Apr 4 2023 zstdgrep -rwxr-xr-x 2 swu321 2626-ece 197 Apr 4 2023 zstdless lrwxrwxrwx 1 swu321 2626-ece 4 Nov 16 12:39 zstdmt -> zstd

guyer commented 8 months ago

fipy is not an executable, so it won't be there.

If gmsh isn't there, then it's not installed properly.

CalebDmArcher commented 8 months ago

gmsh is not in there So I will try to uninstall gmsh in conda and reinstall it?

guyer commented 8 months ago

But I can see it in this directory from the Mobaxterm file manager

I have no idea how that's possible.

Did you literally type

ls -l /nethome/swu321/.conda/envs/MYFI PYENV/bin

with a space between MYFI and PYENV?

CalebDmArcher commented 8 months ago

That space is just a copy and paste issue. There is no space in between when I type in the terminal. And I just refreshed the file manager of Mobaxterm and that 'gmsh' file is gone. I am trying to uninstall gmsh and reinstall it in conda.

guyer commented 8 months ago

Stop. Installing and uninstalling into the same environment is just making a mess.

Create a new, clean conda environment:

conda create --name fipy_and_gmsh --channel conda-forge python=3 fipy gmsh

Just python=3, not 3.9 or 3.11 or anything else.

What does it install? Does which gmsh work when that environment is active? What about gmsh --version?

If you get more of "lots of conflict files and the Conda environment cannot be built", I need to know what it says.

CalebDmArcher commented 8 months ago

I think it works after reinstalling gmsh by using conda remove gmsh and conda install -c conda-forge gmsh I guess it was not installed correctly the first time for some reason and I did not correctly remove it.

I have tested scipy and petsc and have updated the results in the other post.

guyer commented 7 months ago

Glad to hear it