mujoco icon indicating copy to clipboard operation
mujoco copied to clipboard

“pip install mujoco” get stuck

Open zhihaocheng opened this issue 2 years ago • 17 comments

Hi,

I'm a student and I'm trying to use MuJoCo for my research. And I'm looking for some help with the installation of mujoco.

There are mujocos for C/CXX and for python. Hence, to distinguish, I denote them as Mujoco(C/CXX) and Mujoco(Python), respectively. Mujoco(C/CXX) can be installed by building from source or just download a precomplied version. Mujoco(Python) can be installed using pip or building from source.

After installing Mujoco(C/CXX) (The server maintainer installed Mujoco2.2.0 from source and provided a module that I can load), I tried to run “pip install mujoco” to install Mujoco(Python). There were no bugs reported but just got stuck. I waited for about two hours but the installation process was still not finished. Could you please help me? I have also tried to build Mujoco(Python) from source, but the same problem occurred.

""" (mujocotest) [zhc]$ pip install mujoco Collecting mujoco Using cached mujoco-2.2.0.tar.gz (138 kB) Preparing metadata (setup.py) ... done Requirement already satisfied: absl-py in /home/zch/.local/lib/python3.7/site-packages (from mujoco) (0.15.0) Requirement already satisfied: glfw in /home/zch/.local/lib/python3.7/site-packages (from mujoco) (2.5.3) Requirement already satisfied: numpy in /home/zch/.local/lib/python3.7/site-packages (from mujoco) (1.19.5) Requirement already satisfied: pyopengl in /home/zch/.local/lib/python3.7/site-packages (from mujoco) (3.1.6) Requirement already satisfied: six in /usr/local/python/3.7.7/lib/python3.7/site-packages (from absl-py->mujoco) (1.15.0) Building wheels for collected packages: mujoco Building wheel for mujoco (setup.py) ... /

"""

zhihaocheng avatar Jun 17 '22 04:06 zhihaocheng

Hi @zhihaocheng, a copy of the MuJoCo binaries is provided as part of the pip package so you don't need to install the "C/CXX" binaries separately. Can you try creating a fresh python virtual environment (I recommend miniconda) and then installing MuJoCo (pip install --upgrade mujoco)? And then let me know if there are any errors.

kevinzakka avatar Jun 17 '22 14:06 kevinzakka

I'm a bit surprised that pip install mujoco is triggering a source installation for you. Is your server configured to not connect to PyPI but use a local repository?

My recommendation if you're not intending to modify MuJoCo is to get a bdist wheel from PyPI, either via pip or by manually downloading it from pypi.org.

saran-t avatar Jun 17 '22 15:06 saran-t

Thanks @kevinzakka. I have followed your advice but the same problem occurred. The detailed installation process and information about the system is attached as follows.

First, create environment and then activate. I did not use miniconda or anaconda because the server does not support them well, and I must load provided python versions.

-> virtualenv --system-site-packages ~/envs/testmujoco -> source ~/envs/testmujoco/bin/activate

Load necessary modules and upgrade pip. -> module load python/3.7.7 -> module load cmake/3.21.1 (without this module, an error occurred. ) -> python -m pip install --upgrade pip

Export MUJOCO_PATH -> export MUJOCO_PATH=~/mujocosource/mujoco-2.2.0 (this is the path to the mujoco . Without this path, an error occurred.)

After that I can run pip install mujoco, but it got stuck. The server is provided by the university. So I have no access to root and must use some provideded modules such as python and tensorflow. Maybe the system of the server is to old such that mujoco does not support?


Error without cmake. (testmujoco) [zch]$ pip install --upgrade mujoco Collecting mujoco Using cached mujoco-2.2.0.tar.gz (138 kB) Preparing metadata (setup.py) ... done Requirement already satisfied: absl-py in ./.local/lib/python3.7/site-packages (from mujoco) (0.15.0) Requirement already satisfied: glfw in ./.local/lib/python3.7/site-packages (from mujoco) (2.5.3) Requirement already satisfied: numpy in ./.local/lib/python3.7/site-packages (from mujoco) (1.19.5) Requirement already satisfied: pyopengl in ./.local/lib/python3.7/site-packages (from mujoco) (3.1.6) Requirement already satisfied: six in /usr/local/python/3.7.7/lib/python3.7/site-packages (from absl-py->mujoco) (1.15.0) Building wheels for collected packages: mujoco Building wheel for mujoco (setup.py) ... error error: subprocess-exited-with-error

× python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> [34 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.linux-x86_64-cpython-37 creating build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/render_test.py -> build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/rollout.py -> build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/rollout_test.py -> build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/bindings_test.py -> build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/init.py -> build/lib.linux-x86_64-cpython-37/mujoco creating build/lib.linux-x86_64-cpython-37/mujoco/glfw copying mujoco/glfw/init.py -> build/lib.linux-x86_64-cpython-37/mujoco/glfw creating build/lib.linux-x86_64-cpython-37/mujoco/osmesa copying mujoco/osmesa/init.py -> build/lib.linux-x86_64-cpython-37/mujoco/osmesa creating build/lib.linux-x86_64-cpython-37/mujoco/egl copying mujoco/egl/egl_ext.py -> build/lib.linux-x86_64-cpython-37/mujoco/egl copying mujoco/egl/init.py -> build/lib.linux-x86_64-cpython-37/mujoco/egl running build_ext Configuring CMake with the following arguments: -DPython3_ROOT_DIR:PATH=~/envs/testmujoco -DPython3_EXECUTABLE:STRING=~/envs/testmujoco/bin/python -DCMAKE_MODULE_PATH:PATH=/tmp/pbs.6363806.pbsserver/pip-install-jv6zno69/mujoco_7813dcb2c5754bdf98268cdf968f35b7/cmake -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=build/temp.linux-x86_64-cpython-37 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=:BOOLON -DCMAKE_Fortran_COMPILER:STRING= -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DBUILD_TESTING:BOOL=OFF -DMUJOCO_LIBRARY_DIR:PATH=~/mujocosource/mujoco-2.2.0/lib -DMUJOCO_INCLUDE_DIR:PATH=~/mujocosource/mujoco-2.2.0/include -DPython3_LIBRARY=/usr/local/python/3.7.7/lib/python3.7 -DPython3_INCLUDE_DIR=/usr/local/python/3.7.7/include/python3.7m error: [Errno 2] No such file or directory: 'cmake': 'cmake' [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for mujoco Running setup.py clean for mujoco Failed to build mujoco

Error without MUJOCO_PATH (testmujoco) [zhc]$ pip install --upgrade mujoco Collecting mujoco Using cached mujoco-2.2.0.tar.gz (138 kB) Preparing metadata (setup.py) ... done Requirement already satisfied: absl-py in ./.local/lib/python3.7/site-packages (from mujoco) (0.15.0) Requirement already satisfied: glfw in ./.local/lib/python3.7/site-packages (from mujoco) (2.5.3) Requirement already satisfied: numpy in ./.local/lib/python3.7/site-packages (from mujoco) (1.19.5) Requirement already satisfied: pyopengl in ./.local/lib/python3.7/site-packages (from mujoco) (3.1.6) Requirement already satisfied: six in /usr/local/python/3.7.7/lib/python3.7/site-packages (from absl-py->mujoco) (1.15.0) Building wheels for collected packages: mujoco Building wheel for mujoco (setup.py) ... error error: subprocess-exited-with-error

× python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> [57 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.linux-x86_64-cpython-37 creating build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/render_test.py -> build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/rollout.py -> build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/rollout_test.py -> build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/bindings_test.py -> build/lib.linux-x86_64-cpython-37/mujoco copying mujoco/init.py -> build/lib.linux-x86_64-cpython-37/mujoco creating build/lib.linux-x86_64-cpython-37/mujoco/glfw copying mujoco/glfw/init.py -> build/lib.linux-x86_64-cpython-37/mujoco/glfw creating build/lib.linux-x86_64-cpython-37/mujoco/osmesa copying mujoco/osmesa/init.py -> build/lib.linux-x86_64-cpython-37/mujoco/osmesa creating build/lib.linux-x86_64-cpython-37/mujoco/egl copying mujoco/egl/egl_ext.py -> build/lib.linux-x86_64-cpython-37/mujoco/egl copying mujoco/egl/init.py -> build/lib.linux-x86_64-cpython-37/mujoco/egl running build_ext Traceback (most recent call last): File "", line 36, in File "", line 34, in File "/tmp/pbs.6363806.pbsserver/pip-install-9s9wfcn2/mujoco_673a74011cbe456d8d97c294fadfc071/setup.py", line 312, in 'include/mujoco/*.h', File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/init.py", line 87, in setup return distutils.core.setup(**attrs) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/core.py", line 148, in setup return run_commands(dist) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/core.py", line 163, in run_commands dist.run_commands() File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/dist.py", line 967, in run_commands self.run_command(cmd) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/dist.py", line 1224, in run_command super().run_command(command) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/dist.py", line 986, in run_command cmd_obj.run() File "~/envs/testmujoco/lib/python3.7/site-packages/wheel/bdist_wheel.py", line 299, in run self.run_command('build') File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/cmd.py", line 313, in run_command self.distribution.run_command(command) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/dist.py", line 1224, in run_command super().run_command(command) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/dist.py", line 986, in run_command cmd_obj.run() File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/command/build.py", line 136, in run self.run_command(cmd_name) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/cmd.py", line 313, in run_command self.distribution.run_command(command) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/dist.py", line 1224, in run_command super().run_command(command) File "~/envs/testmujoco/lib/python3.7/site-packages/setuptools/_distutils/dist.py", line 986, in run_command cmd_obj.run() File "/tmp/pbs.6363806.pbsserver/pip-install-9s9wfcn2/mujoco_673a74011cbe456d8d97c294fadfc071/setup.py", line 143, in run self._mujoco_framework_path) = self._find_mujoco() File "/tmp/pbs.6363806.pbsserver/pip-install-9s9wfcn2/mujoco_673a74011cbe456d8d97c294fadfc071/setup.py", line 154, in _find_mujoco raise RuntimeError(f'{MUJOCO_PATH} environment variable is not set') RuntimeError: MUJOCO_PATH environment variable is not set [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for mujoco Running setup.py clean for mujoco Failed to build mujoco

Server System Information -> uname -a Linux hpc055 2.6.32-696.16.1.el6.x86_64 #1 SMP Wed Nov 15 16:51:15 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

-> lsb_release -a LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 6.9 (Final) Release: 6.9 Codename: Final

zhihaocheng avatar Jun 18 '22 07:06 zhihaocheng

Thanks @saran-t. I am not clear whether the server uses a local repository. The server is provided by the university. So I have no access to root and must use some provideded modules such as python and tensorflow. But I guess mujoco could connect to Pypi because I am the first to configure mujoco on the server of the university.

According to your advice, I downloaded Mujoco from Pypi and tried to install it. However, it failed again. Could you please refer to the above response to kevinzakka for more details on the environment and server.

(testmujoco) [zhc]$ wget https://files.pythonhosted.org/packages/81/9b/c1f7d49c78ece63412c7f54fa0b89e5a81702e28cd46ea787f9bbd49b489/mujoco-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl --2022-06-18 12:19:00-- https://files.pythonhosted.org/packages/81/9b/c1f7d49c78ece63412c7f54fa0b89e5a81702e28cd46ea787f9bbd49b489/mujoco-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl Resolving files.pythonhosted.org... 151.101.29.63, 2a04:4e42:7::319 Connecting to files.pythonhosted.org|151.101.29.63|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 3526854 (3.4M) [application/octet-stream] Saving to: “mujoco-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl”

100%[===============================================================================================================================================>] 3,526,854 --.-K/s in 0.08s

2022-06-18 12:19:00 (40.7 MB/s) - “mujoco-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl” saved [3526854/3526854]

(testmujoco) [zhc]$ pip install mujoco-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl ERROR: mujoco-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl is not a supported wheel on this platform.

zhihaocheng avatar Jun 18 '22 07:06 zhihaocheng

The problem is that the machine is running CentOS 6, which reached its end-of-life since November 2020.

Our Linux wheels are built to target manylinux2014 compatibility requirements, which should be good for CentOS 7 or later.

We used to target manylinux2010 briefly, but since that's no longer recommended upstream due to CentOS 6 being EoL we migrated to manylinux2014. I realise this might not help you, but my recommendation would be to see if your sysadmin is willing to upgrade the server to CentOS 7 or later, since otherwise the machine wouldn't get any further upstream upgrade.

Failing that, you'll unfortunately have to build from source. To troubleshoot pip being stuck, please rerun it with -vvv so that we get some more message.

saran-t avatar Jun 19 '22 21:06 saran-t

Thanks @saran-t. The server is used for all university students, and there are no plans to update the system. I run pip with -vvv, and the log information is attached as follows.

(testmujoco) [zch]$ pip install -vvv mujoco Using pip 22.1.2 from /project/RDS-FEI-ImitationLearn-RW/.local/lib/python3.7/site-packages/pip (python 3.7) Defaulting to user installation because normal site-packages is not writeable Created temporary directory: /tmp/pbs.6369584.pbsserver/pip-ephem-wheel-cache-ly7f56un Created temporary directory: /tmp/pbs.6369584.pbsserver/pip-build-tracker-3h6o0oe0 Initialized build tracking at /tmp/pbs.6369584.pbsserver/pip-build-tracker-3h6o0oe0 Created build tracker: /tmp/pbs.6369584.pbsserver/pip-build-tracker-3h6o0oe0 Entered build tracker: /tmp/pbs.6369584.pbsserver/pip-build-tracker-3h6o0oe0 Created temporary directory: /tmp/pbs.6369584.pbsserver/pip-install-cu67c6ck 1 location(s) to search for versions of mujoco:

  • https://pypi.org/simple/mujoco/ Fetching project page and analyzing links: https://pypi.org/simple/mujoco/ Getting page https://pypi.org/simple/mujoco/ Found index url https://pypi.org/simple Looking up "https://pypi.org/simple/mujoco/" in the cache Request header has "max_age" as 0, cache bypassed Starting new HTTPS connection (1): pypi.org:443 https://pypi.org:443 "GET /simple/mujoco/ HTTP/1.1" 304 0 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/45/f96ad37f30c3da1d4c339ed884d82d95502dc7d2ae1e5c65309d921f0012/mujoco-2.1.2-cp310-cp310-macosx_10_12_x86_64.whl#sha256=af0a6131438825c8b1689559b8dc4a60de9791949164496c1c08dafe4ad4948e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/4a/fc284ad412a593881e46f5f3723bcc3dd3209213fb56367b05ed9f94b2ec/mujoco-2.1.2-cp310-cp310-macosx_11_0_arm64.whl#sha256=37b4a1cfa987bd1a20b5fe823271e01f02c286629d477c7063e0f53c5e7bbb88 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4a/96/745d6578fa266f2c5158fa245ef4f6d05edd5418948c6dcf18cb92a91ff9/mujoco-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=92599d7860e780753c2764cb242f768452a421f19993d2068c334c1b70779761 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/dc/c92802c6d399b8180e93af51d9a5360bad25bce8b7bd2b13f7faca99cf59/mujoco-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=a86c67e181c186cdc78045ccc6ab196f789db04789673226d156188ddb468aca (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/ec/a6cdd345ea2b14e942c59d32c467b3a17c42f365e7a5debfbc98e96a0549/mujoco-2.1.2-cp310-cp310-win_amd64.whl#sha256=7e3c48a14ad3c95ec27e9c63e41b2e9cfbfc0d201423743c7a225df274ae0dec (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/90/55b45786d20abb7b55689f6e63437efd2fdff05e5991665f93a6ad18f1c7/mujoco-2.1.2-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=917b3293880b1bcb5b119815c75dca4f472ced0c91c8f1c828fee231ba52ba14 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/be/10/47f2b09bc07578f5e7bf0609617ea9e684041bb36e966302160a02f1e626/mujoco-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=a98479ac8cc49e39a78fe85417b82df8db29f1f0fdccb933c64562070233a2e3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/be/0f/d486b999698412ea2400df65b03f1ef05c9f74c55af3cd6e285a01582e54/mujoco-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=845f12c3dd0be0487ac3398dc9ac092f8c086b9627f6426034477b6e7a1e76ca (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/56/afd8fdf826c8ba80d46e6be0c29ca3ce65e37cb6eb6d2f4c6475c2bd99cb/mujoco-2.1.2-cp37-cp37m-win_amd64.whl#sha256=8cbf4f8ac650a1d80becfd6f2d97755478db3380202b02c7e7a183c215195631 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/16/50/c0c33c77bbf6c3cf5a9847d0892f78ef42b6a612136566b52e4af75a74f0/mujoco-2.1.2-cp38-cp38-macosx_10_12_x86_64.whl#sha256=788bc0dc42b4a8f67a6704e0845dac8353b1fc534630651c92a0af13f37105a7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/c4/80dec3b56f8328cb3745bd9ba6783d42670906c3c5f9193d5c07a7bfd841/mujoco-2.1.2-cp38-cp38-macosx_11_0_arm64.whl#sha256=8792e3d625018c1e8dff407b8b1baea3ecbeee1e2a3aa666a028190fec9ae6f1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/46/0c029335ecae1db99ac3933364d4101609245cf90e5e8a2ebbb5f124a4ca/mujoco-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=9a15345c47fe5340e291821d0b8b39b4cbe2f8132b954cf12fda9bb946301166 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/f1/654bdff1492867c809ed1e00a34349bff84e2d215a8eea70acff21cec77a/mujoco-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=41e54a9ba5c3bfcfdee6c15bd830d4c754e0613c0aaf1fd91051e0c0ea021917 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/27/c9e4d895a7800058978db38587f3c08cf35456dd429faf1e9f7da2ed6a62/mujoco-2.1.2-cp38-cp38-win_amd64.whl#sha256=ef0c840be2b242bb87b2e0482908a212ba21ce65ccd684329d6735bb51bb69c5 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/e9/53fab5dfedcff4454997e81e6e99830f1473d6f08ef1f27a689145fcfa23/mujoco-2.1.2-cp39-cp39-macosx_10_12_x86_64.whl#sha256=97940c6a529d844cc8715df6c3b4a31b5f29fa57b22cd22ffe406f05dca2a2d4 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/96/85/ac8d5e7aaadbd3177ffd08361d2f142a4561d3cf50cd1d19836a86ecb33a/mujoco-2.1.2-cp39-cp39-macosx_11_0_arm64.whl#sha256=775563e79c32238081083b4b1db8b29ac2a907242d5730de35734a970b896e61 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/00/cac1b125d2e25e8de0792612cc39a335bae133f75336bf5605e3e4d35e1c/mujoco-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=d4a950d01f141472eff9f9f55df7d074cd9f9a625d15325b3b5adb38dfd96421 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/21/d654eeb8a70e3f4bcbf2ddec3a21c65ddb822369891efdba99d851574dac/mujoco-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=1d87987b8440fa4b0bff03b75bb24435c756b642ebadce5122f1766ec805472f (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/ea/2ddd2f874de547f587d1db8fd94cb5c5dbaa1bba29fa0436a277c939c03b/mujoco-2.1.2-cp39-cp39-win_amd64.whl#sha256=2d8a5f500e9b49b30bcd5dd60f5e69e7f65f7e1475033f074656ec49fc30a3ff (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/00/1a/6fefa1926cad1b45bd9eccb8ec24a870c60ccb698b681c88fd3d3c992507/mujoco-2.1.2.tar.gz#sha256=7f8830bcea668b93ec9d566cc423898cb5ecdf1713246b0d8628a6950089f64b (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.2 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/82/bae0d3f4c72e9764a7d77f796b023b63f35126296a3f56d3b68584ce5572/mujoco-2.1.2.post1-cp310-cp310-macosx_10_12_x86_64.whl#sha256=df822b34d6711b585783eb4bc40083191d2eae97b2a6a4030f349d12bc200476 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/72/59/d684b3f5182e6eb5c0f631208b99695b13e6a1c9c89b2c6769df585c1d0f/mujoco-2.1.2.post1-cp310-cp310-macosx_11_0_arm64.whl#sha256=d5da3b9f45f9d6ed928958d909b44773ed550c211b468787075909c42e82b91d (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/64/d64efc18055ce75e124a27392d81c1b230e004704aa04cd566bd4b045da8/mujoco-2.1.2.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=97a9a4ac1c92bdc0c6b5926673d875ebb4bb95c3096ff3a8640a4c76bc5cedf2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/73/d77507136fbb330ac5153b77ff7afb5a13998124a895a151afd43e433d39/mujoco-2.1.2.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=f170e503d781083b3a00d5554aa58eecd81f3af6ded2763e8267afaf6c0632e0 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/08/bc5fbf5633dd8ca1e79a979a49fc8ba1b416e0d18d6c3045d8a9df6a421d/mujoco-2.1.2.post1-cp310-cp310-win_amd64.whl#sha256=9dda0e297a92be55032a41c6683c580e1bfc79a0a959a7476c4a0ebba928e6a3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/33/8a/b945d04ae604a4bc3224441f70778ab09c59f2c32400cdbdb9da57c1b2dc/mujoco-2.1.2.post1-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=dc954598ac9b8c4d30c869f6e31fbe96d3f0dae630e5b21fcda5dae691eecddb (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/24/23cd29ea57d0d49ddab1bf7362e5e76f252a32b0ed0df18821f22950adad/mujoco-2.1.2.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=432440f6b12a021243fdb62d7fe3f59706c749e577b7a13a6a0216ee465292ed (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/b8/41ae44f7297061cbfe19eadccb68cc7f772e1e20d49277f481a25b1d9748/mujoco-2.1.2.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=04688ec7216baaf113f80367adbf9531e3f1b51a2018e246c544339d0ddb1693 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/a5/ca1dd856375fbdf74ec5b8090ca2ea6bb80dc1c1c7a364ad6031432d8fa0/mujoco-2.1.2.post1-cp37-cp37m-win_amd64.whl#sha256=0f396bc253367a8438844387f1bbd6b04cd6e06af87e2f07e6d72f9037c4b130 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/b7/c9197ff3b1f46e5be22a39d62e9c05fadf141a349974627e2256721880e7/mujoco-2.1.2.post1-cp38-cp38-macosx_10_12_x86_64.whl#sha256=950df237ed3660c1ab863d0f1bfc61ee3e6e98bf4f80e12613599cc03bf57bcd (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/d3/4fe0eebab134e9cd5d38a25b88cb7cf5657f8769bdcfac9b6274890ff81a/mujoco-2.1.2.post1-cp38-cp38-macosx_11_0_arm64.whl#sha256=e97e7548623fc302eb79b363f8bc058ace3928c28f5bdde105f15b90d7fe772f (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f4/63/ddd67688c2df71d23bfe4f43fcff38d81078871600d949380355d8da68f5/mujoco-2.1.2.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=ba1e42f77be46209cda3ee5c5c0f089c9f07ad6777118467ea2cbf5a722c27f7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/4f/8530f5ea829c5ee7c7df9a7e8053bb810d7ea90d87a3eac0ef562241f509/mujoco-2.1.2.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=898bac9e23b2101d890c0ff545dd5bd4714af80c1aabedca9dfd75c729d2e5c2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/fa/58872677fdc3b816460694e4920b8df1f5ac4ac22a73ea3baf41a2be06fa/mujoco-2.1.2.post1-cp38-cp38-win_amd64.whl#sha256=f253044c3c8b47064ec060f58d2cffd5331ec89a71c3c00beee3bab898ae774b (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/64/74ec8b78745b728a34a3122086b7ea5d53826f289da534fa9cea3e492d20/mujoco-2.1.2.post1-cp39-cp39-macosx_10_12_x86_64.whl#sha256=a8c4a3e867347107d1d11c3344e65e10c1f8fe0042f8061f669f11f4837799c8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/17/b77e71ad1e0117b22cf59b60814d24a6892aee1a44379f216f8b81077c56/mujoco-2.1.2.post1-cp39-cp39-macosx_11_0_arm64.whl#sha256=45370e92fda3a2919c721608729ee7c5c537601558ac9d07cb098090ba1e6100 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/80/60/0b166e9f2839981643af057c0b23a0863bbde74bded47657e99a1c250095/mujoco-2.1.2.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=c9c5fd16b9cd2df45d6cfcb3602af9f6733aeee66a88c0c8306d52d282ec2b0f (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/a0/77e0def1d6a8e586c8d21d94f010c2628a7ed1c33468ea363b719f34fe75/mujoco-2.1.2.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=cb94b3df5fe065b6a8569fa12d878097d4506fff8ae9dc192d338b96ad6406bc (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/86/13e547b20296acf8acc724ce98a2cc7f9c1797d45a4536f5f549a3b01006/mujoco-2.1.2.post1-cp39-cp39-win_amd64.whl#sha256=355732a2a7f9181086814ae3b0186745b153ee53aa7ffb9d1fa643f620235558 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/a5/b1/074e178606963b231ef4f9b5aad89cb58a51886ba9485c42978ad9489213/mujoco-2.1.2.post1.tar.gz#sha256=490fc2f44cb17f351a9c72c81a6c434be0c6252860648343586063f7ad0c6ed4 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.2.post1 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/c7/470910037137e159b7b19702cc072ab2be5eda8bafa3fe178bde0f8a080f/mujoco-2.1.3-cp310-cp310-macosx_10_12_x86_64.whl#sha256=2cdef45bfbce394dbeff23f49fd3ae469a0647bbff8ed65332fb1902049b2b01 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/3c/fa92b86f0a28551eee8937a15d9cabb11e35f86dd2330d481aaeec703a6b/mujoco-2.1.3-cp310-cp310-macosx_11_0_arm64.whl#sha256=977a9331b80392a4b97afe1f3a6acee0b6cb39f1895712c0181d7abd0d6ed523 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/19/d2b243067ae5a5bdf7c16b773b0e7d7ab0e99c8cbd273039c2e1cf17f853/mujoco-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=d3803f1ada5effc1fb4694040310755a9cff674829746bc8a47c1abd5c557af7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/4b/31cdffd057a54470873b5bd473a7c01fbea3cf3f36eaec9301fb21215ef4/mujoco-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=92ffe7156d03720d04476bd44022919050f34425f9ad6ad9ed5cc348ff19cb74 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/27/00e986a457c15447db3a2354804d96a8753d8509715418bcccbb90bb370d/mujoco-2.1.3-cp310-cp310-win_amd64.whl#sha256=fc2baded9c7895ee4d1fb32f4c3ea72eeee78f36c32c052f333a8eb1960789f3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/00/1466ef7cce45eaf070ff4779e5e54f42f4da942dee2d0e3b048baa804bf2/mujoco-2.1.3-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=c99e33b85b46ddb28517542666202f546df9cb21f29065a3b8b28210fc5b43d6 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/e1/21eb1d69576f049bc291ec03520d0367c2ef6b35d0fe066f2e81980e7a90/mujoco-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=ae01f69063a348d923a6f42c9b1e4a21f180fff21f46eba0ee251019435e29b9 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/29/10/9c9d319b6e6aabfb7baad9e2a989e37c51c1a4017371c02602d04820244b/mujoco-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=b7c326447fa3e625fbb4edf874b7ac51af505d3ace9024116902a88967e764e0 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/a7/e6922c9d6b3ccae50252d0d406431ce5aa03978a07c134aa03665d8efd9f/mujoco-2.1.3-cp37-cp37m-win_amd64.whl#sha256=efc7040180542ef94373582ff6dedcad7190faa69e4c08e98a6e655e5ad8d2b8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/57/bcbf197436d95c40cfd41b2bf7b401bc6dfb6ecca152b2ef99c7a96c4bf5/mujoco-2.1.3-cp38-cp38-macosx_10_12_x86_64.whl#sha256=f035e280ae74df6b93cfff8cedd0266727afc8c7fd9491dee6a0a36f2fe8606a (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/38/9d6745b9ff629e3d604331d92b45b98b63ad9e31103bf930d9e464e41b7b/mujoco-2.1.3-cp38-cp38-macosx_11_0_arm64.whl#sha256=71a06815f5322c96f6c91c8576d42d3499c4a559b468344cccc2f952edf9e043 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/f8/afa7fb24ff8645b71d553f194fbb922906a208f848216f5835bbef54fc50/mujoco-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=abe5fbbb9b5c064ef127588433b557899bc8ba86bca88bdaed496c7f4962459c (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/f6/e8144eb6e4824d14b56bb83b3876353c0c03ef49008dc7dab2d0ca3b3996/mujoco-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=4e1256e39bfe83466d658888699fe7f1124fa538d1ac0d49509128f229392c2d (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/9b/344ed552c5a34fead09580963c446c7b5340342af6f175c7d0f4d35291e1/mujoco-2.1.3-cp38-cp38-win_amd64.whl#sha256=ac5613282c8c74f0ffc581034c9fac581fdb9b21810179ba51e3a0a24846da16 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/ea/28aa5116b8f10e11b7abceb4e362e561890b8122ceea747cdc94e66ec558/mujoco-2.1.3-cp39-cp39-macosx_10_12_x86_64.whl#sha256=3028cc51eeb347ab6ec529cc211cb9ff2f4893248e5462a69e0e04f924136b52 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a9/41/17736fc024f10fd883290187e35e8a62bfa8b3ae0f2f0797b7caa06eadb6/mujoco-2.1.3-cp39-cp39-macosx_11_0_arm64.whl#sha256=1a89cf1cdcf1dc47b557d203c67fa58b921e01f9a48de98a6a413bfa1426bdc7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/29/43893ca9e4090f284ce2458831670abfad34f2bc6df039126d374413f60b/mujoco-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=590ab3d4025e43971fa6837562c8c24bbdde5cb3c513119bbb5450f58c187559 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/d7/f5fa86c923d49f385ad43ffe92c5a5604ec808af096e74a9657df57780ab/mujoco-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3e8557fe0b94e00bff213d4d91eb4df02dbbd3e2b72e270d6a4f01d06b5441cf (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/cf/af235e89f05e9cb65f26bb514784a977fc6971eb8a60709eac0ad6f69e60/mujoco-2.1.3-cp39-cp39-win_amd64.whl#sha256=dd0e2c1fee7a663aca15d7a8c5f10983254f6ead06f03362285156241169a206 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/bc/84/44ee849b6f915414ab167053e9f8a7bbe57d318a9f9e97ed0adfaea3cd8a/mujoco-2.1.3.tar.gz#sha256=d0b3b687c565d86d8293f59ddaf4d342840b8923fd946eb4421b6d16176a4c73 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.3 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/49/e7ca386b6c996764d0f88f2190b5fb0d12d8fd3f766899205acbb332f253/mujoco-2.1.4-cp310-cp310-macosx_10_12_x86_64.whl#sha256=83d10f93f019b94a6c8191ceaf6c1738d29b690b7c75732dfbe736e233e2a02c (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/ff/1ca928e85bd546119c14eb940ddd1645801deae8f8fb8e06c67e56f533ff/mujoco-2.1.4-cp310-cp310-macosx_11_0_arm64.whl#sha256=90ba26e1feca3226bc9f8423ef6abf028155b1516fc8bbf1233aab331d428a79 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/74/133123cbabd8f1f144d2ab1b7c230f5002d4b5a78234c385f83ef1053ca9/mujoco-2.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=54995a39be3208f6ccc2b2a4bc4b6adec22185c50e2e5446410ac1d28d6fd352 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/86/3bcb28bc361db47c4999cd2cf9e14c0144cf480b4d890ba3e489046a6124/mujoco-2.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=250e7ba93ce6f92e8f5cab30045add0fa177e3eae1a1d2f7e99c2f6535861cd6 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/2a/a98f239479c889c1fe9b73c026d9fe7ad96965d5d2d13276a1252b9d2569/mujoco-2.1.4-cp310-cp310-win_amd64.whl#sha256=52ded881948e818feb98a6d9c287f1ac8c788ce238594b5cb082395985522ba8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/9d/1861cfb98bc657abe26cca1aea6ba81e45f58e01899bf10bb60efe57b076/mujoco-2.1.4-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=6143c93dfae766c2c759b1cc89e2f2efd14d837ea635b0ebe55a76fb2f4b0ce1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/7a/980dbe275c134d1ad6d7e698c835072bbe8920df726b57fca7e6b4b2b6d6/mujoco-2.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=691eb3dd093a2ee448e25c798e80e07c7c83d10d29ab5610994fe82951b6bf24 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/f8/8de5b8186f41df5f3b7f05f1d3d0104901d49e513c9cb34244938e7e3a13/mujoco-2.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=f4ea7337d786a57b670337b1b07d09574643a6dfeb22f1ff728e09e208d741d4 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/33/c1/c5eff111e511bb8a44408c634273b61c34bc0c4e2abf45f401226b5c4742/mujoco-2.1.4-cp37-cp37m-win_amd64.whl#sha256=3b508551a4351dd7636fba82e29f3520f09947a5e0110a7a17489815e41494b3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9b/53/fd1aa8dd9b6432403d0bea05b5c5dbd99291269fcf457f0b2bc6f11dfe07/mujoco-2.1.4-cp38-cp38-macosx_10_12_x86_64.whl#sha256=984debf4e1a65a87e78acc45a1ba2568e9732c51fa7ccdaef479f4186953bc42 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/d4/6648adb73f4503aa425e0fced688cd8ac9aea5d74bdc3da5cd2d7a622e6e/mujoco-2.1.4-cp38-cp38-macosx_11_0_arm64.whl#sha256=5e0efd030a3f44535873605164f55750d2624975242b054e878e5a34e2d45a0c (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/83/912bf48424631a53cd400123f55c46724d236d306dbd27bf52cb8f431cd3/mujoco-2.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=66239ce10aec92748ed93762762144e927e7c86687c74730b5b1f4beace0460e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/51/771cb25e2d3fa5599f7954561490ff507aa8b2eaf253a473568b71532e26/mujoco-2.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc4d1eb54122e13e86819950bc31a7487fa2b14ec3b207421db72c02c9d49eb2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/c0/631e1171d55198f82ec22b18a73ecbc7968ce20e0643c5509844ebe6fd4e/mujoco-2.1.4-cp38-cp38-win_amd64.whl#sha256=d7405e767dc819572a01b4ad031ee0f8d0d0cdd3db82d9052e7ea6e0e4645df1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/67/ed/6b157d44031bc54fb21a2f12c47c555c7910acda2fffdb2fe549cc9bbc8b/mujoco-2.1.4-cp39-cp39-macosx_10_12_x86_64.whl#sha256=476bfc2c8a53981c08ba8da32e9a1009f43b93ab1085fde978ec24de86d1efb5 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/87/f22adadcfee3e73f7bf3050243b4487f16c2a73cc33ac5ceb9710e6027eb/mujoco-2.1.4-cp39-cp39-macosx_11_0_arm64.whl#sha256=27f0da1edb486db878adb67884323a40e404c62840ba6c8e86ec7498c89f8e3c (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0f/08/ed46969dcedd8082dbd5c38c7de5f617e578ca6c1f4257c66f31bbfa13c0/mujoco-2.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=2f1c8809155e04ddad53c7195812d5ee15bbeb6601e964b329981cfef7fabe18 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/97/ad732daf521a67a82ea6e26f0d36be3707ac4c469969a948d29d95a0e9ed/mujoco-2.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=e966345d7bba48363f30cec8c4f50579d638ead3ae7201596d2c0f79f9f82763 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/ec/256db6a41b92c0e6bc2ab91f89718ba8e6a58a14a453310069db6400ae97/mujoco-2.1.4-cp39-cp39-win_amd64.whl#sha256=6297869b99b86068af3543304e90ebe949d135a3e7058a4ac48dafe034b09c0f (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/0f/a4/5587ad62aba3c489df3d1668f73c8d0160d5b93e2d76e171953c1a3d90eb/mujoco-2.1.4.tar.gz#sha256=05b1a90ce59dda68766ccdad5213c241e73999e469b294b8dbf698a998008380 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.4 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/1d/e5b84d9c42ad04fff1f79cfb7e0058735f9413a8d149ea3f43e45e52687e/mujoco-2.1.5-cp310-cp310-macosx_10_12_x86_64.whl#sha256=e260d2e4833ac6707d611f18ea26e846e720e4c130430e5ef8bdb95fb99aded1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/24/539fb9e1cb837b9712aac6c5b23932208b9f7ee096cce799e7ba914aa7e1/mujoco-2.1.5-cp310-cp310-macosx_11_0_arm64.whl#sha256=fe293e0b2529f5d8d26c4c7b9b65b476d369c815faa528a0bd9aa9a7f0c40105 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/d7/250ac7c39c234d9d2bd274562d5b0a1b1870ca56057f095ca50f9df7cc18/mujoco-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=881a562606dec3bf967d3051ab193e10eb7e6a15d03a0a18193903e63f3be41e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/57/6da0fdd13fc5e0f37e436b319a203ff95a68b36a6a0ee195c0edb7c476ca/mujoco-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=606d73a34f04171d70c5ff9034417ea29c7025e66c0d86bf7d8e825a40b453f1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/94/d50631f26eaedf962e7f0eb56135f1babbd7b1cb48383fc463116e703891/mujoco-2.1.5-cp310-cp310-win_amd64.whl#sha256=7a9964bf7ed5d52aa027d13c46ddceb55b5ad9e8d614610b18c45281bde01df7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a4/94/415ab059a4683b7027ee8e14e40c9828a12dd7aa3c8981e0d12191fb1b3b/mujoco-2.1.5-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=73348b3c972fd5487ce391e5eb2935809c5ea00ae287f225af26ad33205b549d (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/84/c0f4c2e4128974a9ffff55f9a5c2a6fca49cefeed4b295577ffe6a56af3f/mujoco-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=00f2a883b73fe2cad6ee831122bc8b82b1cd75b1f562ec802f46faf20c145d87 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/90/71ef8960ebfbb4cd6238befd107471ab0a9f1b22b7398fb3011aa6d8670c/mujoco-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=923e4bcd065cca062d9933b6bb3dbc6e8606739d092293a7ecba034335bd3b70 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/f1/2fba981b4407509f61a20a3778a29a3bd54f65b8b7f582fb65de97db9503/mujoco-2.1.5-cp37-cp37m-win_amd64.whl#sha256=1894e90c2b7fe66d52dec2b4fa1492f3c0a16fd253de3a61ede41a5e1be5c4d0 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/18/82bea6141b872225fb33478606e44d5002c0a2f5fc616febe96b00c8c1d0/mujoco-2.1.5-cp38-cp38-macosx_10_12_x86_64.whl#sha256=afa4f9a25ec938580bf307d7bdca2e6371fe386716c54ee9a182f302902b47ef (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/f5/97a8abb6953ee1314bbf24e1a9cd68c91e157a84d82ceeeecadd4102d9b8/mujoco-2.1.5-cp38-cp38-macosx_11_0_arm64.whl#sha256=63777b6bd2f7300eb6c67a662c896381c492edb9b270cbb2867d92d7cb95db79 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/12/a16086f5e1b5e2a464de8b8f30ba61651cc58983b1c79b06ffc7cce85e5a/mujoco-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=e5d66e581508d6608ac1d7bb72cacf095e643518792c7f4581fdec81b6810669 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/b5/bf4c10388f5d9bdfa92298a2bdbc231512a6f88af4d4175dd6e7fa5ccdee/mujoco-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=2ba0ab968a6aa49fefbc42d0e6ea2190d94b0328dfa92a6d15a62e56b524395b (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/ff/bf94e8035b5a12af3d9f80485082e66ce11c039ec1f60997e00e89fe28de/mujoco-2.1.5-cp38-cp38-win_amd64.whl#sha256=0ca6b99432b7f9c6c2424613a638b954667db1d901f3a5bbbbe26936e9ac4e9e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/33/0d3dfe5ebc834c589c522ad441e91941bd1f318a7ac2c1a48850ffada658/mujoco-2.1.5-cp39-cp39-macosx_10_12_x86_64.whl#sha256=d00d991edb7779bb9ae073acaf8b49e62c9942656dfc337860c0d3d5406f9c36 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/0c/f198e935a645c8641614a265541b9af3cf050582f4e6a1c18c4b7907099e/mujoco-2.1.5-cp39-cp39-macosx_11_0_arm64.whl#sha256=880539de1c901d3542a5b6af38a3771be6ed073a359b1d9bbba5a5e33554d214 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/ba/d2a2cfee2d81a5b292645a86576bb45850481e4deb818e2ab5a6caf04452/mujoco-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=d7be008cdb736ed84e38f51d10a9d7f787606c60b6b2a34a302e21620086c714 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/6d/18b66aa5e2d30df4f678c767f1aaa29bbea749913113245aefaae2a3f4dd/mujoco-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=7a495077de09bd57644688fc71cbee9ce1b5734b06e3cee97c73b77b2c7249b3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/1f/ff45f0b3e5ffb74835b4d9104c7c81bb74e1ef3a58aae2274a859ec3815d/mujoco-2.1.5-cp39-cp39-win_amd64.whl#sha256=84abffcf628304faf03baf3654653fb9d7f3904e7ec2b5c0c95bd1d603ed0bf2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/8e/96/22c6c8c3759617bcd4802d378f4ffd032a5594e79d3b81c55275272272d5/mujoco-2.1.5.tar.gz#sha256=ea4cb714e85a67bda5b605554798465010f44d288a0911d88648ea201e2b17fe (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.5 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/6e/47ee36a90bf381a775b6f308f95d7481c4da5bff95147f7b366b22cfced0/mujoco-2.2.0-cp310-cp310-macosx_10_12_x86_64.whl#sha256=103357863320fdd5b8ed3dc41dd719e7211efea3b3d675c10eb7d0aa26a8e2a2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/aa/974c6ada22a8bc3a34276d71bab3535dac7e4d319bfeacfa5826fe556531/mujoco-2.2.0-cp310-cp310-macosx_11_0_arm64.whl#sha256=8c88ce6f7c0ecbd72826a6f24b19eacbedb1214ad0087361ff6aa44a4524023e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/88/f8b8be137d6efca3854084e6c23c0430c021f5a4e5cc72d1f6c625ab2eb8/mujoco-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=290c9c358d89cbc3bfec7077fd57d4a7983a17e85af9b8c373ca6a26c39b4697 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/03/3c/af34a1d53370e2317c379faf23241c6a961e64019cfdfa85c4666b9e56a9/mujoco-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=8be58a89b2050d3db00d08117e08dcb354b9502a82ea2143c60f8a3c48a2cbca (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/22/2ddcae9c3dfa4daadcb964fe817e1a790fc63a67af9742af764d8e3538cd/mujoco-2.2.0-cp310-cp310-win_amd64.whl#sha256=bc6de46a43089efdf7417a2efea932ec66bef2bca95c9fcf6b4d8ce198260743 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/e7/8eae0023d6928e4055348ef453002a066c97f5016cb9d3970df648f221bf/mujoco-2.2.0-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=e65c0f891ea4cd47dbc1a54204b8cbb08711bd0cda1b4340fd31c0a718b683a8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/82/8cd9d1de7415dfa0876de4fdd49210c7b9e2390ce9f2c4d5a05710944d10/mujoco-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=cd4361a183bffc10e6d5520537a6657a5507398ab9df072b3cace3262af274b9 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/9b/c1f7d49c78ece63412c7f54fa0b89e5a81702e28cd46ea787f9bbd49b489/mujoco-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=7b8d28f35cc4efdb284feb8d145cc2245fb08c9c68c4682464249933e015e9ad (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/64/abc09049e6e55f2d7cffa05b765f80a0d1bd6b6c5d027df133983eed8baf/mujoco-2.2.0-cp37-cp37m-win_amd64.whl#sha256=969ca82382686707166451362f96f467da5602e44af3542fdd0ed4babb92a9f1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/21/c571626ffa081dfde57e3f9e0d39fad1af7c749bef6ca04bdf381c28def3/mujoco-2.2.0-cp38-cp38-macosx_10_12_x86_64.whl#sha256=adb2e3dfef47648e3daf95cb40433653ef80eb97f22527906c13b47be2dd6c06 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/de/63/4db2838ae6d12a43165c3c57e5014984ffd10c122e39e800344398d3e0f1/mujoco-2.2.0-cp38-cp38-macosx_11_0_arm64.whl#sha256=0d76ab6a13fd66d98f80a41e7b29f8410eac13ec1f9b1badc927270876afc266 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/de/b8f6a98db837cfd52da58f88cc83820c59898deaa382b444d17d243f43d3/mujoco-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=f47d94afcd0081bd547a2e858af98e5efe31c647f824fc93a5edde656e078d55 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/12/07f757612f66141ded841130a97dd6c49b6b6879ebac7db6489b9c65ae5c/mujoco-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=7da2485571c8e2c1a4b08b0a298ea7e2a68e4d994fd16f7842da0b7202790d03 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/18/59a9a4c3996f48ace1d3c1aabb92440fe735ab01e1c47608749bba9abe8a/mujoco-2.2.0-cp38-cp38-win_amd64.whl#sha256=8698ba1e48c17b506c138408fb66a3b27e3930a2f2fad6eae1f2123500970013 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/14/ff0aa984236ccf8b8ff3752a7967060296eb96b6e54e96f840f70e24e136/mujoco-2.2.0-cp39-cp39-macosx_10_12_x86_64.whl#sha256=7f3855256e880a7e5517c38d7aabc4b1dd6548723b1ba9ce0dfb0155cf667698 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/2e/0179822671e6ffd0cfedf391eb5892aaa2484c7fc15516f92329debfbc27/mujoco-2.2.0-cp39-cp39-macosx_11_0_arm64.whl#sha256=3fdcf6b9092f0f74042c61fe0231bfa03f4fa9a044c216b8daab8bf691ac44e8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/e8/bc59bea458ca1c5e836cc9328ea4601afc99dcea3d0e7f814ea79c4ba86c/mujoco-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=ec1cfc369ebf574655731a2823ba05b46c268595eebdd960698f3e1dd965d893 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/24/efa05ae99eb293d2071181af9842189a3834d43671a7b4c72777004c372b/mujoco-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=4c2e3505614c92debfdf4fa182473012cc634915e995ed13bfbf3724e86d9983 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/a1/3a85fc4325bd662ce2fdcf880cd901dfb8d71db6c6eaabf21f80437e2705/mujoco-2.2.0-cp39-cp39-win_amd64.whl#sha256=6fad79862c9d77bd8db7353e9184790dd5b78d2a100ff0583350ec03c65aa78b (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz#sha256=1bb370365a10f3e76eee8a438c8eafcd0d2721e05c1c9bf602cded8223f819cf (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.2.0 Skipping link: not a file: https://pypi.org/simple/mujoco/ Given no hashes to check 6 links for project 'mujoco': discarding no candidates Collecting mujoco Created temporary directory: /tmp/pbs.6369584.pbsserver/pip-unpack-qnogg69l Looking up "https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz" in the cache Current age based on date: 417631 Ignoring unknown cache-control directive: immutable Freshness lifetime from max-age: 365000000 The response is "fresh", returning cached response 365000000 > 417631 Using cached mujoco-2.2.0.tar.gz (138 kB) Added mujoco from https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz#sha256=1bb370365a10f3e76eee8a438c8eafcd0d2721e05c1c9bf602cded8223f819cf to build tracker '/tmp/pbs.6369584.pbsserver/pip-build-tracker-3h6o0oe0' Running setup.py (path:/tmp/pbs.6369584.pbsserver/pip-install-cu67c6ck/mujoco_5f7b170e3b774145a580e5cddb66e1b0/setup.py) egg_info for package mujoco Created temporary directory: /tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu Running command python setup.py egg_info running egg_info creating /tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu/mujoco.egg-info writing /tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu/mujoco.egg-info/PKG-INFO writing dependency_links to /tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu/mujoco.egg-info/dependency_links.txt writing requirements to /tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu/mujoco.egg-info/requires.txt writing top-level names to /tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu/mujoco.egg-info/top_level.txt writing manifest file '/tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu/mujoco.egg-info/SOURCES.txt' /usr/local/python/3.7.7/lib/python3.7/site-packages/setuptools_scm/integration.py:39: RuntimeWarning: ERROR: setuptools==41.2.0 is used in combination with setuptools_scm>=6.x

    Your build configuration is incomplete and previously worked by accident!

    This happens as setuptools is unable to replace itself when a activated build dependency requires a more recent setuptools version (it does not respect "setuptools>X" in setup_requires).

    setuptools>=31 is required for setup.cfg metadata support setuptools>=42 is required for pyproject.toml configuration support

    Suggested workarounds if applicable:

    • preinstalling build dependencies like setuptools_scm before running setup.py
    • installing setuptools_scm using the system package manager to ensure consistency
    • migrating from the deprecated setup_requires mechanism to pep517/518 and using a pyproject.toml to declare build dependencies which are reliably pre-installed before running the build tools

    """ listing git files failed - pretending there aren't any reading manifest file '/tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu/mujoco.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file '/tmp/pbs.6369584.pbsserver/pip-pip-egg-info-k9otchtu/mujoco.egg-info/SOURCES.txt' Preparing metadata (setup.py) ... done Source in /tmp/pbs.6369584.pbsserver/pip-install-cu67c6ck/mujoco_5f7b170e3b774145a580e5cddb66e1b0 has version 2.2.0, which satisfies requirement mujoco from https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz#sha256=1bb370365a10f3e76eee8a438c8eafcd0d2721e05c1c9bf602cded8223f819cf Removed mujoco from https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz#sha256=1bb370365a10f3e76eee8a438c8eafcd0d2721e05c1c9bf602cded8223f819cf from build tracker '/tmp/pbs.6369584.pbsserver/pip-build-tracker-3h6o0oe0' Requirement already satisfied: absl-py in ./.local/lib/python3.7/site-packages (from mujoco) (0.15.0) Requirement already satisfied: glfw in ./.local/lib/python3.7/site-packages (from mujoco) (2.5.3) Requirement already satisfied: numpy in ./.local/lib/python3.7/site-packages (from mujoco) (1.19.5) Requirement already satisfied: pyopengl in ./.local/lib/python3.7/site-packages (from mujoco) (3.1.6) Requirement already satisfied: six in /usr/local/python/3.7.7/lib/python3.7/site-packages (from absl-py->mujoco) (1.15.0) Created temporary directory: /tmp/pbs.6369584.pbsserver/pip-unpack-f3uzq085 Building wheels for collected packages: mujoco Created temporary directory: /tmp/pbs.6369584.pbsserver/pip-wheel-lkqxt193 Building wheel for mujoco (setup.py) ... Destination directory: /tmp/pbs.6369584.pbsserver/pip-wheel-lkqxt193 Running command python setup.py bdist_wheel running bdist_wheel running build running build_py creating build creating build/lib.linux-x86_64-3.7 creating build/lib.linux-x86_64-3.7/mujoco copying mujoco/render_test.py -> build/lib.linux-x86_64-3.7/mujoco copying mujoco/rollout.py -> build/lib.linux-x86_64-3.7/mujoco copying mujoco/rollout_test.py -> build/lib.linux-x86_64-3.7/mujoco copying mujoco/bindings_test.py -> build/lib.linux-x86_64-3.7/mujoco copying mujoco/init.py -> build/lib.linux-x86_64-3.7/mujoco creating build/lib.linux-x86_64-3.7/mujoco/glfw copying mujoco/glfw/init.py -> build/lib.linux-x86_64-3.7/mujoco/glfw creating build/lib.linux-x86_64-3.7/mujoco/osmesa copying mujoco/osmesa/init.py -> build/lib.linux-x86_64-3.7/mujoco/osmesa creating build/lib.linux-x86_64-3.7/mujoco/egl copying mujoco/egl/egl_ext.py -> build/lib.linux-x86_64-3.7/mujoco/egl copying mujoco/egl/init.py -> build/lib.linux-x86_64-3.7/mujoco/egl running build_ext Configuring CMake with the following arguments: -DPython3_ROOT_DIR:PATH=/usr/local/python/3.7.7 -DPython3_EXECUTABLE:STRING=/usr/local/python/3.7.7/bin/python3.7 -DCMAKE_MODULE_PATH:PATH=/tmp/pbs.6369584.pbsserver/pip-install-cu67c6ck/mujoco_5f7b170e3b774145a580e5cddb66e1b0/cmake -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=build/temp.linux-x86_64-3.7 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=:BOOLON -DCMAKE_Fortran_COMPILER:STRING= -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DBUILD_TESTING:BOOL=OFF -DMUJOCO_LIBRARY_DIR:PATH=/project/RDS-FEI-ImitationLearn-RW/mujocosource/mujoco-2.2.0/lib -DMUJOCO_INCLUDE_DIR:PATH=/project/RDS-FEI-ImitationLearn-RW/mujocosource/mujoco-2.2.0/include -DPython3_LIBRARY=/usr/local/python/3.7.7/lib/python3.7 -DPython3_INCLUDE_DIR=/usr/local/python/3.7.7/include/python3.7m -- The C compiler identification is GNU 4.4.7 -- The CXX compiler identification is GNU 4.4.7 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /usr/bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Performing Test SUPPORTS_LLD -- Performing Test SUPPORTS_LLD - Failed -- Performing Test SUPPORTS_GOLD -- Performing Test SUPPORTS_GOLD - Failed -- Performing Test SUPPORTS_GC_SECTIONS -- Performing Test SUPPORTS_GC_SECTIONS - Success -- Found Python3: /usr/local/python/3.7.7/bin/python3.7 (found version "3.7.7") found components: Interpreter Development Development.Module Development.Embed MuJoCo is at /project/RDS-FEI-ImitationLearn-RW/mujocosource/mujoco-2.2.0/lib/libmujoco.so MuJoCo headers are at /project/RDS-FEI-ImitationLearn-RW/mujocosource/mujoco-2.2.0/include -- mujoco::FindOrFetch: checking for targets in package absl -- mujoco::FindOrFetch: checking for targets in package absl - target absl::core_headers not defined. -- mujoco::FindOrFetch: Using FetchContent to retrieve abseil-cpp CMake Warning at /tmp/pbs.6369584.pbsserver/pip-install-cu67c6ck/mujoco_5f7b170e3b774145a580e5cddb66e1b0/build/temp.linux-x86_64-3.7/_deps/abseil-cpp-src/CMakeLists.txt:70 (message): A future Abseil release will default ABSL_PROPAGATE_CXX_STD to ON for CMake 3.8 and up. We recommend enabling this option to ensure your project still builds correctly.

    -- Looking for pthread.h -- Looking for pthread.h - found -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- mujoco::FindOrFetch: Using FetchContent to retrieve abseil-cpp - Done -- mujoco::FindOrFetch: checking for targets in package Eigen3 -- mujoco::FindOrFetch: checking for targets in package Eigen3 - target Eigen3::Eigen not defined. -- mujoco::FindOrFetch: Using FetchContent to retrieve eigen

zhihaocheng avatar Jun 21 '22 10:06 zhihaocheng

The last line that you see when it gets stuck is "mujoco::FindOrFetch: Using FetchContent to retrieve eigen" correct? I just want to make sure that the paste didn't get clipped.

EDIT: I just noticed that you are trying to compile with GCC 4.4.7 which is extremely old. In particular, that compiler does not support C++17 so will not be able to build this codebase even if we manage to get pass this point. Is there any other compiler installed on the server?

saran-t avatar Jun 21 '22 12:06 saran-t

Thank you. I can confirm that the last line is "mujoco::FindOrFetch: Using FetchContent to retrieve eigen".

In terms of the GCC version, I also loaded and tried GCC 9.1.0, which is the newest version on the server. However, it still got stuck as my last post. Besides, I have tried to use llvm/14.0.0 and clang/6.0.1. I manually load these packages and export them as compliers. And then run pip install mujoco. However, I waited for about 1.5 hours and it got stuck again. The output is attached at the end of this post.

Actually, the server provides various compilers, which are listed as follows (testmujoco) [zhc]$ module avail |& grep gcc fftw/2.1.5-gcc fftw/3.3.3-gcc(default) fftw/3.3.4-gcc gcc/12.1.0 gcc/4.8.4 gcc/4.9.0 gcc/4.9.3(default) gcc/4.9.4 gcc/5.4.0 gcc/5.5.0 gcc/6.2.0 gcc/7.4.0 gcc/7.5.0 gcc/8.4.0 gcc/9.1.0 gromacs/4.6.7-openmpi-gcc gromacs/5.1.4-openmpi-gcc gromacs/5.1-openmpi-gcc gromacs-plumed/5.1.4-openmpi-gcc-plumed-2.2.4 gromacs-plumed/5.1.4-openmpi-gcc-plumed-2.3.0(default) hdf5-gcc-mpich-3.2/1.10.1(default) hdf5-gcc-openmpi/1.10.1 hdf5-gcc-openmpi/1.8.16(default) hdf5-gcc-openmpi-1.10.3/1.10.4(default) hdf5-gcc-openmpi-3.0.0/1.10.1(default) hdf5-gcc-openmpi-3.1.3/1.10.4(default) hdf5-gcc-openmpi-3.1.3-cuda10/1.10.4(default) hdf5-gcc-openmpi-cuda/1.10.1(default) liggghts-public/3.8.0-openmpi-gcc molpro/2015-gcc-mpi molpro/2015-gcc-mpi-test2 namd/2.10-openmpi-gcc(default) namd/2.11-openmpi-gcc namd/2.12-openmpi-gcc openmpi-gcc/1.10.2 openmpi-gcc/1.10.3 openmpi-gcc/1.10.7 openmpi-gcc/1.8.4(default) openmpi-gcc/1.8.4-6.x openmpi-gcc/1.8.4-backup openmpi-gcc/2.1.2 openmpi-gcc/3.0.0 openmpi-gcc/3.0.0-64 openmpi-gcc/3.0.0-cuda openmpi-gcc/3.0.1 openmpi-gcc/3.1.3 openmpi-gcc/3.1.3-cuda10 openmpi-gcc/3.1.4 openmpi-gcc/3.1.5 openmpi-gcc/3.1.5a openmpi-gcc/4.0.0-cuda10 openmpi-gcc/4.0.3 openmpi-gcc/4.1.1 petsc-gcc/3.7.6(default) petsc-gcc-mpich/3.11.1 petsc-gcc-mpich/3.13.6 petsc-gcc-mpich/3.14.1 petsc-gcc-mpich/3.15.2 petsc-gcc-mpich/3.7.6 petsc-gcc-mpich/3.9.3(default) petsc-gcc-openmpi/3.7.6(default) petsc-gcc-openmpi/3.8.4 petsc-gcc-openmpi/3.9.3

(testmujoco) [zhc]$ module avail |& grep llvm llvm/11.1.0 llvm/14.0.0(default) llvm/6.0.1 (testmujoco) [zhc]$ module avail |& grep clang clang/6.0.1(default)

(testmujoco) [zhc]$ pip install --upgrade -vvv mujoco Using pip 22.1.2 from /project/RDS-FEI-ImitationLearn-RW/.local/lib/python3.7/site-packages/pip (python 3.7) Defaulting to user installation because normal site-packages is not writeable Created temporary directory: /tmp/pbs.6371704.pbsserver/pip-ephem-wheel-cache-pyg_lgx_ Created temporary directory: /tmp/pbs.6371704.pbsserver/pip-build-tracker-cjeegs9e Initialized build tracking at /tmp/pbs.6371704.pbsserver/pip-build-tracker-cjeegs9e Created build tracker: /tmp/pbs.6371704.pbsserver/pip-build-tracker-cjeegs9e Entered build tracker: /tmp/pbs.6371704.pbsserver/pip-build-tracker-cjeegs9e Created temporary directory: /tmp/pbs.6371704.pbsserver/pip-install-y9bq5kdf 1 location(s) to search for versions of mujoco:

  • https://pypi.org/simple/mujoco/ Fetching project page and analyzing links: https://pypi.org/simple/mujoco/ Getting page https://pypi.org/simple/mujoco/ Found index url https://pypi.org/simple Looking up "https://pypi.org/simple/mujoco/" in the cache Request header has "max_age" as 0, cache bypassed Starting new HTTPS connection (1): pypi.org:443 https://pypi.org:443 "GET /simple/mujoco/ HTTP/1.1" 304 0 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/45/f96ad37f30c3da1d4c339ed884d82d95502dc7d2ae1e5c65309d921f0012/mujoco-2.1.2-cp310-cp310-macosx_10_12_x86_64.whl#sha256=af0a6131438825c8b1689559b8dc4a60de9791949164496c1c08dafe4ad4948e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/4a/fc284ad412a593881e46f5f3723bcc3dd3209213fb56367b05ed9f94b2ec/mujoco-2.1.2-cp310-cp310-macosx_11_0_arm64.whl#sha256=37b4a1cfa987bd1a20b5fe823271e01f02c286629d477c7063e0f53c5e7bbb88 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4a/96/745d6578fa266f2c5158fa245ef4f6d05edd5418948c6dcf18cb92a91ff9/mujoco-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=92599d7860e780753c2764cb242f768452a421f19993d2068c334c1b70779761 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/dc/c92802c6d399b8180e93af51d9a5360bad25bce8b7bd2b13f7faca99cf59/mujoco-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=a86c67e181c186cdc78045ccc6ab196f789db04789673226d156188ddb468aca (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/ec/a6cdd345ea2b14e942c59d32c467b3a17c42f365e7a5debfbc98e96a0549/mujoco-2.1.2-cp310-cp310-win_amd64.whl#sha256=7e3c48a14ad3c95ec27e9c63e41b2e9cfbfc0d201423743c7a225df274ae0dec (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/90/55b45786d20abb7b55689f6e63437efd2fdff05e5991665f93a6ad18f1c7/mujoco-2.1.2-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=917b3293880b1bcb5b119815c75dca4f472ced0c91c8f1c828fee231ba52ba14 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/be/10/47f2b09bc07578f5e7bf0609617ea9e684041bb36e966302160a02f1e626/mujoco-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=a98479ac8cc49e39a78fe85417b82df8db29f1f0fdccb933c64562070233a2e3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/be/0f/d486b999698412ea2400df65b03f1ef05c9f74c55af3cd6e285a01582e54/mujoco-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=845f12c3dd0be0487ac3398dc9ac092f8c086b9627f6426034477b6e7a1e76ca (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/56/afd8fdf826c8ba80d46e6be0c29ca3ce65e37cb6eb6d2f4c6475c2bd99cb/mujoco-2.1.2-cp37-cp37m-win_amd64.whl#sha256=8cbf4f8ac650a1d80becfd6f2d97755478db3380202b02c7e7a183c215195631 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/16/50/c0c33c77bbf6c3cf5a9847d0892f78ef42b6a612136566b52e4af75a74f0/mujoco-2.1.2-cp38-cp38-macosx_10_12_x86_64.whl#sha256=788bc0dc42b4a8f67a6704e0845dac8353b1fc534630651c92a0af13f37105a7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/c4/80dec3b56f8328cb3745bd9ba6783d42670906c3c5f9193d5c07a7bfd841/mujoco-2.1.2-cp38-cp38-macosx_11_0_arm64.whl#sha256=8792e3d625018c1e8dff407b8b1baea3ecbeee1e2a3aa666a028190fec9ae6f1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/46/0c029335ecae1db99ac3933364d4101609245cf90e5e8a2ebbb5f124a4ca/mujoco-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=9a15345c47fe5340e291821d0b8b39b4cbe2f8132b954cf12fda9bb946301166 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/f1/654bdff1492867c809ed1e00a34349bff84e2d215a8eea70acff21cec77a/mujoco-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=41e54a9ba5c3bfcfdee6c15bd830d4c754e0613c0aaf1fd91051e0c0ea021917 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/27/c9e4d895a7800058978db38587f3c08cf35456dd429faf1e9f7da2ed6a62/mujoco-2.1.2-cp38-cp38-win_amd64.whl#sha256=ef0c840be2b242bb87b2e0482908a212ba21ce65ccd684329d6735bb51bb69c5 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/e9/53fab5dfedcff4454997e81e6e99830f1473d6f08ef1f27a689145fcfa23/mujoco-2.1.2-cp39-cp39-macosx_10_12_x86_64.whl#sha256=97940c6a529d844cc8715df6c3b4a31b5f29fa57b22cd22ffe406f05dca2a2d4 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/96/85/ac8d5e7aaadbd3177ffd08361d2f142a4561d3cf50cd1d19836a86ecb33a/mujoco-2.1.2-cp39-cp39-macosx_11_0_arm64.whl#sha256=775563e79c32238081083b4b1db8b29ac2a907242d5730de35734a970b896e61 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/00/cac1b125d2e25e8de0792612cc39a335bae133f75336bf5605e3e4d35e1c/mujoco-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=d4a950d01f141472eff9f9f55df7d074cd9f9a625d15325b3b5adb38dfd96421 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/21/d654eeb8a70e3f4bcbf2ddec3a21c65ddb822369891efdba99d851574dac/mujoco-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=1d87987b8440fa4b0bff03b75bb24435c756b642ebadce5122f1766ec805472f (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/ea/2ddd2f874de547f587d1db8fd94cb5c5dbaa1bba29fa0436a277c939c03b/mujoco-2.1.2-cp39-cp39-win_amd64.whl#sha256=2d8a5f500e9b49b30bcd5dd60f5e69e7f65f7e1475033f074656ec49fc30a3ff (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/00/1a/6fefa1926cad1b45bd9eccb8ec24a870c60ccb698b681c88fd3d3c992507/mujoco-2.1.2.tar.gz#sha256=7f8830bcea668b93ec9d566cc423898cb5ecdf1713246b0d8628a6950089f64b (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.2 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/82/bae0d3f4c72e9764a7d77f796b023b63f35126296a3f56d3b68584ce5572/mujoco-2.1.2.post1-cp310-cp310-macosx_10_12_x86_64.whl#sha256=df822b34d6711b585783eb4bc40083191d2eae97b2a6a4030f349d12bc200476 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/72/59/d684b3f5182e6eb5c0f631208b99695b13e6a1c9c89b2c6769df585c1d0f/mujoco-2.1.2.post1-cp310-cp310-macosx_11_0_arm64.whl#sha256=d5da3b9f45f9d6ed928958d909b44773ed550c211b468787075909c42e82b91d (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/64/d64efc18055ce75e124a27392d81c1b230e004704aa04cd566bd4b045da8/mujoco-2.1.2.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=97a9a4ac1c92bdc0c6b5926673d875ebb4bb95c3096ff3a8640a4c76bc5cedf2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/73/d77507136fbb330ac5153b77ff7afb5a13998124a895a151afd43e433d39/mujoco-2.1.2.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=f170e503d781083b3a00d5554aa58eecd81f3af6ded2763e8267afaf6c0632e0 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/08/bc5fbf5633dd8ca1e79a979a49fc8ba1b416e0d18d6c3045d8a9df6a421d/mujoco-2.1.2.post1-cp310-cp310-win_amd64.whl#sha256=9dda0e297a92be55032a41c6683c580e1bfc79a0a959a7476c4a0ebba928e6a3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/33/8a/b945d04ae604a4bc3224441f70778ab09c59f2c32400cdbdb9da57c1b2dc/mujoco-2.1.2.post1-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=dc954598ac9b8c4d30c869f6e31fbe96d3f0dae630e5b21fcda5dae691eecddb (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/24/23cd29ea57d0d49ddab1bf7362e5e76f252a32b0ed0df18821f22950adad/mujoco-2.1.2.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=432440f6b12a021243fdb62d7fe3f59706c749e577b7a13a6a0216ee465292ed (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/b8/41ae44f7297061cbfe19eadccb68cc7f772e1e20d49277f481a25b1d9748/mujoco-2.1.2.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=04688ec7216baaf113f80367adbf9531e3f1b51a2018e246c544339d0ddb1693 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/a5/ca1dd856375fbdf74ec5b8090ca2ea6bb80dc1c1c7a364ad6031432d8fa0/mujoco-2.1.2.post1-cp37-cp37m-win_amd64.whl#sha256=0f396bc253367a8438844387f1bbd6b04cd6e06af87e2f07e6d72f9037c4b130 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/b7/c9197ff3b1f46e5be22a39d62e9c05fadf141a349974627e2256721880e7/mujoco-2.1.2.post1-cp38-cp38-macosx_10_12_x86_64.whl#sha256=950df237ed3660c1ab863d0f1bfc61ee3e6e98bf4f80e12613599cc03bf57bcd (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/d3/4fe0eebab134e9cd5d38a25b88cb7cf5657f8769bdcfac9b6274890ff81a/mujoco-2.1.2.post1-cp38-cp38-macosx_11_0_arm64.whl#sha256=e97e7548623fc302eb79b363f8bc058ace3928c28f5bdde105f15b90d7fe772f (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f4/63/ddd67688c2df71d23bfe4f43fcff38d81078871600d949380355d8da68f5/mujoco-2.1.2.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=ba1e42f77be46209cda3ee5c5c0f089c9f07ad6777118467ea2cbf5a722c27f7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/4f/8530f5ea829c5ee7c7df9a7e8053bb810d7ea90d87a3eac0ef562241f509/mujoco-2.1.2.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=898bac9e23b2101d890c0ff545dd5bd4714af80c1aabedca9dfd75c729d2e5c2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/fa/58872677fdc3b816460694e4920b8df1f5ac4ac22a73ea3baf41a2be06fa/mujoco-2.1.2.post1-cp38-cp38-win_amd64.whl#sha256=f253044c3c8b47064ec060f58d2cffd5331ec89a71c3c00beee3bab898ae774b (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/64/74ec8b78745b728a34a3122086b7ea5d53826f289da534fa9cea3e492d20/mujoco-2.1.2.post1-cp39-cp39-macosx_10_12_x86_64.whl#sha256=a8c4a3e867347107d1d11c3344e65e10c1f8fe0042f8061f669f11f4837799c8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/17/b77e71ad1e0117b22cf59b60814d24a6892aee1a44379f216f8b81077c56/mujoco-2.1.2.post1-cp39-cp39-macosx_11_0_arm64.whl#sha256=45370e92fda3a2919c721608729ee7c5c537601558ac9d07cb098090ba1e6100 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/80/60/0b166e9f2839981643af057c0b23a0863bbde74bded47657e99a1c250095/mujoco-2.1.2.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=c9c5fd16b9cd2df45d6cfcb3602af9f6733aeee66a88c0c8306d52d282ec2b0f (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/a0/77e0def1d6a8e586c8d21d94f010c2628a7ed1c33468ea363b719f34fe75/mujoco-2.1.2.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=cb94b3df5fe065b6a8569fa12d878097d4506fff8ae9dc192d338b96ad6406bc (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/86/13e547b20296acf8acc724ce98a2cc7f9c1797d45a4536f5f549a3b01006/mujoco-2.1.2.post1-cp39-cp39-win_amd64.whl#sha256=355732a2a7f9181086814ae3b0186745b153ee53aa7ffb9d1fa643f620235558 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/a5/b1/074e178606963b231ef4f9b5aad89cb58a51886ba9485c42978ad9489213/mujoco-2.1.2.post1.tar.gz#sha256=490fc2f44cb17f351a9c72c81a6c434be0c6252860648343586063f7ad0c6ed4 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.2.post1 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/c7/470910037137e159b7b19702cc072ab2be5eda8bafa3fe178bde0f8a080f/mujoco-2.1.3-cp310-cp310-macosx_10_12_x86_64.whl#sha256=2cdef45bfbce394dbeff23f49fd3ae469a0647bbff8ed65332fb1902049b2b01 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/3c/fa92b86f0a28551eee8937a15d9cabb11e35f86dd2330d481aaeec703a6b/mujoco-2.1.3-cp310-cp310-macosx_11_0_arm64.whl#sha256=977a9331b80392a4b97afe1f3a6acee0b6cb39f1895712c0181d7abd0d6ed523 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/19/d2b243067ae5a5bdf7c16b773b0e7d7ab0e99c8cbd273039c2e1cf17f853/mujoco-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=d3803f1ada5effc1fb4694040310755a9cff674829746bc8a47c1abd5c557af7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/4b/31cdffd057a54470873b5bd473a7c01fbea3cf3f36eaec9301fb21215ef4/mujoco-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=92ffe7156d03720d04476bd44022919050f34425f9ad6ad9ed5cc348ff19cb74 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/27/00e986a457c15447db3a2354804d96a8753d8509715418bcccbb90bb370d/mujoco-2.1.3-cp310-cp310-win_amd64.whl#sha256=fc2baded9c7895ee4d1fb32f4c3ea72eeee78f36c32c052f333a8eb1960789f3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/00/1466ef7cce45eaf070ff4779e5e54f42f4da942dee2d0e3b048baa804bf2/mujoco-2.1.3-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=c99e33b85b46ddb28517542666202f546df9cb21f29065a3b8b28210fc5b43d6 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/e1/21eb1d69576f049bc291ec03520d0367c2ef6b35d0fe066f2e81980e7a90/mujoco-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=ae01f69063a348d923a6f42c9b1e4a21f180fff21f46eba0ee251019435e29b9 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/29/10/9c9d319b6e6aabfb7baad9e2a989e37c51c1a4017371c02602d04820244b/mujoco-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=b7c326447fa3e625fbb4edf874b7ac51af505d3ace9024116902a88967e764e0 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/a7/e6922c9d6b3ccae50252d0d406431ce5aa03978a07c134aa03665d8efd9f/mujoco-2.1.3-cp37-cp37m-win_amd64.whl#sha256=efc7040180542ef94373582ff6dedcad7190faa69e4c08e98a6e655e5ad8d2b8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/57/bcbf197436d95c40cfd41b2bf7b401bc6dfb6ecca152b2ef99c7a96c4bf5/mujoco-2.1.3-cp38-cp38-macosx_10_12_x86_64.whl#sha256=f035e280ae74df6b93cfff8cedd0266727afc8c7fd9491dee6a0a36f2fe8606a (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/38/9d6745b9ff629e3d604331d92b45b98b63ad9e31103bf930d9e464e41b7b/mujoco-2.1.3-cp38-cp38-macosx_11_0_arm64.whl#sha256=71a06815f5322c96f6c91c8576d42d3499c4a559b468344cccc2f952edf9e043 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/f8/afa7fb24ff8645b71d553f194fbb922906a208f848216f5835bbef54fc50/mujoco-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=abe5fbbb9b5c064ef127588433b557899bc8ba86bca88bdaed496c7f4962459c (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/f6/e8144eb6e4824d14b56bb83b3876353c0c03ef49008dc7dab2d0ca3b3996/mujoco-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=4e1256e39bfe83466d658888699fe7f1124fa538d1ac0d49509128f229392c2d (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/9b/344ed552c5a34fead09580963c446c7b5340342af6f175c7d0f4d35291e1/mujoco-2.1.3-cp38-cp38-win_amd64.whl#sha256=ac5613282c8c74f0ffc581034c9fac581fdb9b21810179ba51e3a0a24846da16 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/ea/28aa5116b8f10e11b7abceb4e362e561890b8122ceea747cdc94e66ec558/mujoco-2.1.3-cp39-cp39-macosx_10_12_x86_64.whl#sha256=3028cc51eeb347ab6ec529cc211cb9ff2f4893248e5462a69e0e04f924136b52 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a9/41/17736fc024f10fd883290187e35e8a62bfa8b3ae0f2f0797b7caa06eadb6/mujoco-2.1.3-cp39-cp39-macosx_11_0_arm64.whl#sha256=1a89cf1cdcf1dc47b557d203c67fa58b921e01f9a48de98a6a413bfa1426bdc7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/29/43893ca9e4090f284ce2458831670abfad34f2bc6df039126d374413f60b/mujoco-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=590ab3d4025e43971fa6837562c8c24bbdde5cb3c513119bbb5450f58c187559 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/d7/f5fa86c923d49f385ad43ffe92c5a5604ec808af096e74a9657df57780ab/mujoco-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3e8557fe0b94e00bff213d4d91eb4df02dbbd3e2b72e270d6a4f01d06b5441cf (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/cf/af235e89f05e9cb65f26bb514784a977fc6971eb8a60709eac0ad6f69e60/mujoco-2.1.3-cp39-cp39-win_amd64.whl#sha256=dd0e2c1fee7a663aca15d7a8c5f10983254f6ead06f03362285156241169a206 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/bc/84/44ee849b6f915414ab167053e9f8a7bbe57d318a9f9e97ed0adfaea3cd8a/mujoco-2.1.3.tar.gz#sha256=d0b3b687c565d86d8293f59ddaf4d342840b8923fd946eb4421b6d16176a4c73 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.3 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/49/e7ca386b6c996764d0f88f2190b5fb0d12d8fd3f766899205acbb332f253/mujoco-2.1.4-cp310-cp310-macosx_10_12_x86_64.whl#sha256=83d10f93f019b94a6c8191ceaf6c1738d29b690b7c75732dfbe736e233e2a02c (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/ff/1ca928e85bd546119c14eb940ddd1645801deae8f8fb8e06c67e56f533ff/mujoco-2.1.4-cp310-cp310-macosx_11_0_arm64.whl#sha256=90ba26e1feca3226bc9f8423ef6abf028155b1516fc8bbf1233aab331d428a79 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/74/133123cbabd8f1f144d2ab1b7c230f5002d4b5a78234c385f83ef1053ca9/mujoco-2.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=54995a39be3208f6ccc2b2a4bc4b6adec22185c50e2e5446410ac1d28d6fd352 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/86/3bcb28bc361db47c4999cd2cf9e14c0144cf480b4d890ba3e489046a6124/mujoco-2.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=250e7ba93ce6f92e8f5cab30045add0fa177e3eae1a1d2f7e99c2f6535861cd6 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/2a/a98f239479c889c1fe9b73c026d9fe7ad96965d5d2d13276a1252b9d2569/mujoco-2.1.4-cp310-cp310-win_amd64.whl#sha256=52ded881948e818feb98a6d9c287f1ac8c788ce238594b5cb082395985522ba8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/9d/1861cfb98bc657abe26cca1aea6ba81e45f58e01899bf10bb60efe57b076/mujoco-2.1.4-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=6143c93dfae766c2c759b1cc89e2f2efd14d837ea635b0ebe55a76fb2f4b0ce1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/7a/980dbe275c134d1ad6d7e698c835072bbe8920df726b57fca7e6b4b2b6d6/mujoco-2.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=691eb3dd093a2ee448e25c798e80e07c7c83d10d29ab5610994fe82951b6bf24 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/f8/8de5b8186f41df5f3b7f05f1d3d0104901d49e513c9cb34244938e7e3a13/mujoco-2.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=f4ea7337d786a57b670337b1b07d09574643a6dfeb22f1ff728e09e208d741d4 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/33/c1/c5eff111e511bb8a44408c634273b61c34bc0c4e2abf45f401226b5c4742/mujoco-2.1.4-cp37-cp37m-win_amd64.whl#sha256=3b508551a4351dd7636fba82e29f3520f09947a5e0110a7a17489815e41494b3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9b/53/fd1aa8dd9b6432403d0bea05b5c5dbd99291269fcf457f0b2bc6f11dfe07/mujoco-2.1.4-cp38-cp38-macosx_10_12_x86_64.whl#sha256=984debf4e1a65a87e78acc45a1ba2568e9732c51fa7ccdaef479f4186953bc42 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/d4/6648adb73f4503aa425e0fced688cd8ac9aea5d74bdc3da5cd2d7a622e6e/mujoco-2.1.4-cp38-cp38-macosx_11_0_arm64.whl#sha256=5e0efd030a3f44535873605164f55750d2624975242b054e878e5a34e2d45a0c (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/83/912bf48424631a53cd400123f55c46724d236d306dbd27bf52cb8f431cd3/mujoco-2.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=66239ce10aec92748ed93762762144e927e7c86687c74730b5b1f4beace0460e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/51/771cb25e2d3fa5599f7954561490ff507aa8b2eaf253a473568b71532e26/mujoco-2.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc4d1eb54122e13e86819950bc31a7487fa2b14ec3b207421db72c02c9d49eb2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/c0/631e1171d55198f82ec22b18a73ecbc7968ce20e0643c5509844ebe6fd4e/mujoco-2.1.4-cp38-cp38-win_amd64.whl#sha256=d7405e767dc819572a01b4ad031ee0f8d0d0cdd3db82d9052e7ea6e0e4645df1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/67/ed/6b157d44031bc54fb21a2f12c47c555c7910acda2fffdb2fe549cc9bbc8b/mujoco-2.1.4-cp39-cp39-macosx_10_12_x86_64.whl#sha256=476bfc2c8a53981c08ba8da32e9a1009f43b93ab1085fde978ec24de86d1efb5 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/87/f22adadcfee3e73f7bf3050243b4487f16c2a73cc33ac5ceb9710e6027eb/mujoco-2.1.4-cp39-cp39-macosx_11_0_arm64.whl#sha256=27f0da1edb486db878adb67884323a40e404c62840ba6c8e86ec7498c89f8e3c (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0f/08/ed46969dcedd8082dbd5c38c7de5f617e578ca6c1f4257c66f31bbfa13c0/mujoco-2.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=2f1c8809155e04ddad53c7195812d5ee15bbeb6601e964b329981cfef7fabe18 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/97/ad732daf521a67a82ea6e26f0d36be3707ac4c469969a948d29d95a0e9ed/mujoco-2.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=e966345d7bba48363f30cec8c4f50579d638ead3ae7201596d2c0f79f9f82763 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/ec/256db6a41b92c0e6bc2ab91f89718ba8e6a58a14a453310069db6400ae97/mujoco-2.1.4-cp39-cp39-win_amd64.whl#sha256=6297869b99b86068af3543304e90ebe949d135a3e7058a4ac48dafe034b09c0f (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/0f/a4/5587ad62aba3c489df3d1668f73c8d0160d5b93e2d76e171953c1a3d90eb/mujoco-2.1.4.tar.gz#sha256=05b1a90ce59dda68766ccdad5213c241e73999e469b294b8dbf698a998008380 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.4 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/1d/e5b84d9c42ad04fff1f79cfb7e0058735f9413a8d149ea3f43e45e52687e/mujoco-2.1.5-cp310-cp310-macosx_10_12_x86_64.whl#sha256=e260d2e4833ac6707d611f18ea26e846e720e4c130430e5ef8bdb95fb99aded1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/24/539fb9e1cb837b9712aac6c5b23932208b9f7ee096cce799e7ba914aa7e1/mujoco-2.1.5-cp310-cp310-macosx_11_0_arm64.whl#sha256=fe293e0b2529f5d8d26c4c7b9b65b476d369c815faa528a0bd9aa9a7f0c40105 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/d7/250ac7c39c234d9d2bd274562d5b0a1b1870ca56057f095ca50f9df7cc18/mujoco-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=881a562606dec3bf967d3051ab193e10eb7e6a15d03a0a18193903e63f3be41e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/57/6da0fdd13fc5e0f37e436b319a203ff95a68b36a6a0ee195c0edb7c476ca/mujoco-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=606d73a34f04171d70c5ff9034417ea29c7025e66c0d86bf7d8e825a40b453f1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/94/d50631f26eaedf962e7f0eb56135f1babbd7b1cb48383fc463116e703891/mujoco-2.1.5-cp310-cp310-win_amd64.whl#sha256=7a9964bf7ed5d52aa027d13c46ddceb55b5ad9e8d614610b18c45281bde01df7 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a4/94/415ab059a4683b7027ee8e14e40c9828a12dd7aa3c8981e0d12191fb1b3b/mujoco-2.1.5-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=73348b3c972fd5487ce391e5eb2935809c5ea00ae287f225af26ad33205b549d (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/84/c0f4c2e4128974a9ffff55f9a5c2a6fca49cefeed4b295577ffe6a56af3f/mujoco-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=00f2a883b73fe2cad6ee831122bc8b82b1cd75b1f562ec802f46faf20c145d87 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/90/71ef8960ebfbb4cd6238befd107471ab0a9f1b22b7398fb3011aa6d8670c/mujoco-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=923e4bcd065cca062d9933b6bb3dbc6e8606739d092293a7ecba034335bd3b70 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/f1/2fba981b4407509f61a20a3778a29a3bd54f65b8b7f582fb65de97db9503/mujoco-2.1.5-cp37-cp37m-win_amd64.whl#sha256=1894e90c2b7fe66d52dec2b4fa1492f3c0a16fd253de3a61ede41a5e1be5c4d0 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/18/82bea6141b872225fb33478606e44d5002c0a2f5fc616febe96b00c8c1d0/mujoco-2.1.5-cp38-cp38-macosx_10_12_x86_64.whl#sha256=afa4f9a25ec938580bf307d7bdca2e6371fe386716c54ee9a182f302902b47ef (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/f5/97a8abb6953ee1314bbf24e1a9cd68c91e157a84d82ceeeecadd4102d9b8/mujoco-2.1.5-cp38-cp38-macosx_11_0_arm64.whl#sha256=63777b6bd2f7300eb6c67a662c896381c492edb9b270cbb2867d92d7cb95db79 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/12/a16086f5e1b5e2a464de8b8f30ba61651cc58983b1c79b06ffc7cce85e5a/mujoco-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=e5d66e581508d6608ac1d7bb72cacf095e643518792c7f4581fdec81b6810669 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/b5/bf4c10388f5d9bdfa92298a2bdbc231512a6f88af4d4175dd6e7fa5ccdee/mujoco-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=2ba0ab968a6aa49fefbc42d0e6ea2190d94b0328dfa92a6d15a62e56b524395b (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/ff/bf94e8035b5a12af3d9f80485082e66ce11c039ec1f60997e00e89fe28de/mujoco-2.1.5-cp38-cp38-win_amd64.whl#sha256=0ca6b99432b7f9c6c2424613a638b954667db1d901f3a5bbbbe26936e9ac4e9e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/33/0d3dfe5ebc834c589c522ad441e91941bd1f318a7ac2c1a48850ffada658/mujoco-2.1.5-cp39-cp39-macosx_10_12_x86_64.whl#sha256=d00d991edb7779bb9ae073acaf8b49e62c9942656dfc337860c0d3d5406f9c36 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/0c/f198e935a645c8641614a265541b9af3cf050582f4e6a1c18c4b7907099e/mujoco-2.1.5-cp39-cp39-macosx_11_0_arm64.whl#sha256=880539de1c901d3542a5b6af38a3771be6ed073a359b1d9bbba5a5e33554d214 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/ba/d2a2cfee2d81a5b292645a86576bb45850481e4deb818e2ab5a6caf04452/mujoco-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=d7be008cdb736ed84e38f51d10a9d7f787606c60b6b2a34a302e21620086c714 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/6d/18b66aa5e2d30df4f678c767f1aaa29bbea749913113245aefaae2a3f4dd/mujoco-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=7a495077de09bd57644688fc71cbee9ce1b5734b06e3cee97c73b77b2c7249b3 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/1f/ff45f0b3e5ffb74835b4d9104c7c81bb74e1ef3a58aae2274a859ec3815d/mujoco-2.1.5-cp39-cp39-win_amd64.whl#sha256=84abffcf628304faf03baf3654653fb9d7f3904e7ec2b5c0c95bd1d603ed0bf2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/8e/96/22c6c8c3759617bcd4802d378f4ffd032a5594e79d3b81c55275272272d5/mujoco-2.1.5.tar.gz#sha256=ea4cb714e85a67bda5b605554798465010f44d288a0911d88648ea201e2b17fe (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.1.5 Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/6e/47ee36a90bf381a775b6f308f95d7481c4da5bff95147f7b366b22cfced0/mujoco-2.2.0-cp310-cp310-macosx_10_12_x86_64.whl#sha256=103357863320fdd5b8ed3dc41dd719e7211efea3b3d675c10eb7d0aa26a8e2a2 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/aa/974c6ada22a8bc3a34276d71bab3535dac7e4d319bfeacfa5826fe556531/mujoco-2.2.0-cp310-cp310-macosx_11_0_arm64.whl#sha256=8c88ce6f7c0ecbd72826a6f24b19eacbedb1214ad0087361ff6aa44a4524023e (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_aarch64, cp310-cp310-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/88/f8b8be137d6efca3854084e6c23c0430c021f5a4e5cc72d1f6c625ab2eb8/mujoco-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=290c9c358d89cbc3bfec7077fd57d4a7983a17e85af9b8c373ca6a26c39b4697 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-manylinux2014_x86_64, cp310-cp310-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/03/3c/af34a1d53370e2317c379faf23241c6a961e64019cfdfa85c4666b9e56a9/mujoco-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=8be58a89b2050d3db00d08117e08dcb354b9502a82ea2143c60f8a3c48a2cbca (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/22/2ddcae9c3dfa4daadcb964fe817e1a790fc63a67af9742af764d8e3538cd/mujoco-2.2.0-cp310-cp310-win_amd64.whl#sha256=bc6de46a43089efdf7417a2efea932ec66bef2bca95c9fcf6b4d8ce198260743 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/e7/8eae0023d6928e4055348ef453002a066c97f5016cb9d3970df648f221bf/mujoco-2.2.0-cp37-cp37m-macosx_10_12_x86_64.whl#sha256=e65c0f891ea4cd47dbc1a54204b8cbb08711bd0cda1b4340fd31c0a718b683a8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_aarch64, cp37-cp37m-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/82/8cd9d1de7415dfa0876de4fdd49210c7b9e2390ce9f2c4d5a05710944d10/mujoco-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=cd4361a183bffc10e6d5520537a6657a5507398ab9df072b3cace3262af274b9 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-manylinux2014_x86_64, cp37-cp37m-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/9b/c1f7d49c78ece63412c7f54fa0b89e5a81702e28cd46ea787f9bbd49b489/mujoco-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=7b8d28f35cc4efdb284feb8d145cc2245fb08c9c68c4682464249933e015e9ad (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/64/abc09049e6e55f2d7cffa05b765f80a0d1bd6b6c5d027df133983eed8baf/mujoco-2.2.0-cp37-cp37m-win_amd64.whl#sha256=969ca82382686707166451362f96f467da5602e44af3542fdd0ed4babb92a9f1 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/21/c571626ffa081dfde57e3f9e0d39fad1af7c749bef6ca04bdf381c28def3/mujoco-2.2.0-cp38-cp38-macosx_10_12_x86_64.whl#sha256=adb2e3dfef47648e3daf95cb40433653ef80eb97f22527906c13b47be2dd6c06 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/de/63/4db2838ae6d12a43165c3c57e5014984ffd10c122e39e800344398d3e0f1/mujoco-2.2.0-cp38-cp38-macosx_11_0_arm64.whl#sha256=0d76ab6a13fd66d98f80a41e7b29f8410eac13ec1f9b1badc927270876afc266 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_aarch64, cp38-cp38-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/de/b8f6a98db837cfd52da58f88cc83820c59898deaa382b444d17d243f43d3/mujoco-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=f47d94afcd0081bd547a2e858af98e5efe31c647f824fc93a5edde656e078d55 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-manylinux2014_x86_64, cp38-cp38-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/12/07f757612f66141ded841130a97dd6c49b6b6879ebac7db6489b9c65ae5c/mujoco-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=7da2485571c8e2c1a4b08b0a298ea7e2a68e4d994fd16f7842da0b7202790d03 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/18/59a9a4c3996f48ace1d3c1aabb92440fe735ab01e1c47608749bba9abe8a/mujoco-2.2.0-cp38-cp38-win_amd64.whl#sha256=8698ba1e48c17b506c138408fb66a3b27e3930a2f2fad6eae1f2123500970013 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_10_12_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/14/ff0aa984236ccf8b8ff3752a7967060296eb96b6e54e96f840f70e24e136/mujoco-2.2.0-cp39-cp39-macosx_10_12_x86_64.whl#sha256=7f3855256e880a7e5517c38d7aabc4b1dd6548723b1ba9ce0dfb0155cf667698 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/2e/0179822671e6ffd0cfedf391eb5892aaa2484c7fc15516f92329debfbc27/mujoco-2.2.0-cp39-cp39-macosx_11_0_arm64.whl#sha256=3fdcf6b9092f0f74042c61fe0231bfa03f4fa9a044c216b8daab8bf691ac44e8 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_aarch64, cp39-cp39-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/e8/bc59bea458ca1c5e836cc9328ea4601afc99dcea3d0e7f814ea79c4ba86c/mujoco-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=ec1cfc369ebf574655731a2823ba05b46c268595eebdd960698f3e1dd965d893 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-manylinux2014_x86_64, cp39-cp39-manylinux_2_17_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/24/efa05ae99eb293d2071181af9842189a3834d43671a7b4c72777004c372b/mujoco-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=4c2e3505614c92debfdf4fa182473012cc634915e995ed13bfbf3724e86d9983 (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/a1/3a85fc4325bd662ce2fdcf880cd901dfb8d71db6c6eaabf21f80437e2705/mujoco-2.2.0-cp39-cp39-win_amd64.whl#sha256=6fad79862c9d77bd8db7353e9184790dd5b78d2a100ff0583350ec03c65aa78b (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7) Found link https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz#sha256=1bb370365a10f3e76eee8a438c8eafcd0d2721e05c1c9bf602cded8223f819cf (from https://pypi.org/simple/mujoco/) (requires-python:>=3.7), version: 2.2.0 Skipping link: not a file: https://pypi.org/simple/mujoco/ Given no hashes to check 6 links for project 'mujoco': discarding no candidates Collecting mujoco Created temporary directory: /tmp/pbs.6371704.pbsserver/pip-unpack-c2xk6m4f Looking up "https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz" in the cache Current age based on date: 515983 Ignoring unknown cache-control directive: immutable Freshness lifetime from max-age: 365000000 The response is "fresh", returning cached response 365000000 > 515983 Using cached mujoco-2.2.0.tar.gz (138 kB) Added mujoco from https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz#sha256=1bb370365a10f3e76eee8a438c8eafcd0d2721e05c1c9bf602cded8223f819cf to build tracker '/tmp/pbs.6371704.pbsserver/pip-build-tracker-cjeegs9e' Running setup.py (path:/tmp/pbs.6371704.pbsserver/pip-install-y9bq5kdf/mujoco_4d5013efb38040138a506bb606318bb4/setup.py) egg_info for package mujoco Created temporary directory: /tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0 Running command python setup.py egg_info running egg_info creating /tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0/mujoco.egg-info writing /tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0/mujoco.egg-info/PKG-INFO writing dependency_links to /tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0/mujoco.egg-info/dependency_links.txt writing requirements to /tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0/mujoco.egg-info/requires.txt writing top-level names to /tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0/mujoco.egg-info/top_level.txt writing manifest file '/tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0/mujoco.egg-info/SOURCES.txt' /usr/local/python/3.7.7/lib/python3.7/site-packages/setuptools_scm/integration.py:39: RuntimeWarning: ERROR: setuptools==41.2.0 is used in combination with setuptools_scm>=6.x

    Your build configuration is incomplete and previously worked by accident!

    This happens as setuptools is unable to replace itself when a activated build dependency requires a more recent setuptools version (it does not respect "setuptools>X" in setup_requires).

    setuptools>=31 is required for setup.cfg metadata support setuptools>=42 is required for pyproject.toml configuration support

    Suggested workarounds if applicable:

    • preinstalling build dependencies like setuptools_scm before running setup.py
    • installing setuptools_scm using the system package manager to ensure consistency
    • migrating from the deprecated setup_requires mechanism to pep517/518 and using a pyproject.toml to declare build dependencies which are reliably pre-installed before running the build tools

    """ listing git files failed - pretending there aren't any reading manifest file '/tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0/mujoco.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file '/tmp/pbs.6371704.pbsserver/pip-pip-egg-info-eoohdrm0/mujoco.egg-info/SOURCES.txt' Preparing metadata (setup.py) ... done Source in /tmp/pbs.6371704.pbsserver/pip-install-y9bq5kdf/mujoco_4d5013efb38040138a506bb606318bb4 has version 2.2.0, which satisfies requirement mujoco from https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz#sha256=1bb370365a10f3e76eee8a438c8eafcd0d2721e05c1c9bf602cded8223f819cf Removed mujoco from https://files.pythonhosted.org/packages/ad/52/3af0a5c1669eaf3bb81f3aeb04dfddceff9938c54f52033243428cc81e0d/mujoco-2.2.0.tar.gz#sha256=1bb370365a10f3e76eee8a438c8eafcd0d2721e05c1c9bf602cded8223f819cf from build tracker '/tmp/pbs.6371704.pbsserver/pip-build-tracker-cjeegs9e' Requirement already satisfied: absl-py in ./.local/lib/python3.7/site-packages (from mujoco) (0.15.0) Requirement already satisfied: glfw in ./.local/lib/python3.7/site-packages (from mujoco) (2.5.3) Requirement already satisfied: numpy in ./.local/lib/python3.7/site-packages (from mujoco) (1.19.5) Requirement already satisfied: pyopengl in ./.local/lib/python3.7/site-packages (from mujoco) (3.1.6) Requirement already satisfied: six in /usr/local/python/3.7.7/lib/python3.7/site-packages (from absl-py->mujoco) (1.15.0) Created temporary directory: /tmp/pbs.6371704.pbsserver/pip-unpack-f19p_t_7 Building wheels for collected packages: mujoco Created temporary directory: /tmp/pbs.6371704.pbsserver/pip-wheel-x7f7mjve Building wheel for mujoco (setup.py) ... Destination directory: /tmp/pbs.6371704.pbsserver/pip-wheel-x7f7mjve Running command python setup.py bdist_wheel running bdist_wheel running build running build_py creating build creating build/lib.linux-x86_64-3.7 creating build/lib.linux-x86_64-3.7/mujoco copying mujoco/render_test.py -> build/lib.linux-x86_64-3.7/mujoco copying mujoco/rollout.py -> build/lib.linux-x86_64-3.7/mujoco copying mujoco/rollout_test.py -> build/lib.linux-x86_64-3.7/mujoco copying mujoco/bindings_test.py -> build/lib.linux-x86_64-3.7/mujoco copying mujoco/init.py -> build/lib.linux-x86_64-3.7/mujoco creating build/lib.linux-x86_64-3.7/mujoco/glfw copying mujoco/glfw/init.py -> build/lib.linux-x86_64-3.7/mujoco/glfw creating build/lib.linux-x86_64-3.7/mujoco/osmesa copying mujoco/osmesa/init.py -> build/lib.linux-x86_64-3.7/mujoco/osmesa creating build/lib.linux-x86_64-3.7/mujoco/egl copying mujoco/egl/egl_ext.py -> build/lib.linux-x86_64-3.7/mujoco/egl copying mujoco/egl/init.py -> build/lib.linux-x86_64-3.7/mujoco/egl running build_ext Configuring CMake with the following arguments: -DPython3_ROOT_DIR:PATH=/usr/local/python/3.7.7 -DPython3_EXECUTABLE:STRING=/usr/local/python/3.7.7/bin/python3.7 -DCMAKE_MODULE_PATH:PATH=/tmp/pbs.6371704.pbsserver/pip-install-y9bq5kdf/mujoco_4d5013efb38040138a506bb606318bb4/cmake -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=build/temp.linux-x86_64-3.7 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=:BOOLON -DCMAKE_Fortran_COMPILER:STRING= -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DBUILD_TESTING:BOOL=OFF -DMUJOCO_LIBRARY_DIR:PATH=/project/RDS-FEI-ImitationLearn-RW/mujocosource/mujoco-2.2.0/lib -DMUJOCO_INCLUDE_DIR:PATH=/project/RDS-FEI-ImitationLearn-RW/mujocosource/mujoco-2.2.0/include -DPython3_LIBRARY=/usr/local/python/3.7.7/lib/python3.7 -DPython3_INCLUDE_DIR=/usr/local/python/3.7.7/include/python3.7m -- The C compiler identification is Clang 14.0.0 -- The CXX compiler identification is Clang 14.0.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /usr/local/llvm/14.0.0/bin/clang - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /usr/local/llvm/14.0.0/bin/clang++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Performing Test SUPPORTS_LLD -- Performing Test SUPPORTS_LLD - Failed -- Performing Test SUPPORTS_GOLD -- Performing Test SUPPORTS_GOLD - Failed -- Performing Test SUPPORTS_GC_SECTIONS -- Performing Test SUPPORTS_GC_SECTIONS - Success -- Found Python3: /usr/local/python/3.7.7/bin/python3.7 (found version "3.7.7") found components: Interpreter Development Development.Module Development.Embed MuJoCo is at /project/RDS-FEI-ImitationLearn-RW/mujocosource/mujoco-2.2.0/lib/libmujoco.so MuJoCo headers are at /project/RDS-FEI-ImitationLearn-RW/mujocosource/mujoco-2.2.0/include -- mujoco::FindOrFetch: checking for targets in package absl -- mujoco::FindOrFetch: checking for targets in package absl - target absl::core_headers not defined. -- mujoco::FindOrFetch: Using FetchContent to retrieve abseil-cpp CMake Warning at /tmp/pbs.6371704.pbsserver/pip-install-y9bq5kdf/mujoco_4d5013efb38040138a506bb606318bb4/build/temp.linux-x86_64-3.7/_deps/abseil-cpp-src/CMakeLists.txt:70 (message): A future Abseil release will default ABSL_PROPAGATE_CXX_STD to ON for CMake 3.8 and up. We recommend enabling this option to ensure your project still builds correctly.

    -- Looking for pthread.h -- Looking for pthread.h - found -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- mujoco::FindOrFetch: Using FetchContent to retrieve abseil-cpp - Done -- mujoco::FindOrFetch: checking for targets in package Eigen3 -- mujoco::FindOrFetch: checking for targets in package Eigen3 - target Eigen3::Eigen not defined. -- mujoco::FindOrFetch: Using FetchContent to retrieve eigen

zhihaocheng avatar Jun 22 '22 14:06 zhihaocheng

Are you able to access the eigen git repository from the server? i.e:

git clone -n https://gitlab.com/libeigen/eigen
cd eigen
git checkout 3147391d946bb4b6c68edd901f2add6ac1f31f8c

nimrod-gileadi avatar Jun 29 '22 15:06 nimrod-gileadi

@zhihaocheng any luck?

saran-t avatar Jul 15 '22 23:07 saran-t

Thanks @nimrod-gileadi. Thank you @saran-t. I have tried to git clone eigen and the server is able to access it. A difference is that the code working is as follows. However, even if I clone eigen, the same problem occurs as in my last post.

git clone -n https://gitlab.com/libeigen/eigen.git

zhihaocheng avatar Jul 16 '22 08:07 zhihaocheng

Is this issue still affecting you?

saran-t avatar Aug 01 '22 23:08 saran-t

Is this issue still affecting you?

Thanks @saran-t and sorry for the late reply. Actually, I cannot solve this problem until now. I can only run experiments on some small workstations that I have the root privilege rather than the HPC of the university, which slows down my research. Thanks again for you contact, and I will close this issue.

zhihaocheng avatar Aug 07 '22 01:08 zhihaocheng

@zhihaocheng the only suggestion I have is to clone the Eigen repo manually and point CMake to it using the -DFETCHCONTENT_SOURCE_DIR_EIGEN3:PATH=/path/to/your/eigen" flag.

saran-t avatar Aug 07 '22 16:08 saran-t

Hi @saran-t , thanks for your advice. I will try it. In the previous discussion, you said that the problem is due to running on CentOS 6. Would it be possible that I build the mujoco on a CentOS 6 machine that I have full control from source and then migrate the compiled files to the HPC of university?

zhihaocheng avatar Aug 08 '22 01:08 zhihaocheng

Yes that should work.

saran-t avatar Aug 08 '22 09:08 saran-t

Thanks @saran-t , I'm one step closer to solving the problem. Today, I tried to install the Python Mujoco by building from source. I find that the previous problem is resulted from the URL of eigen. If I replace "https://gitlab.com/libeigen/eigen" with "https://gitlab.com/libeigen/eigen.git" in mujoco-2.2.1/python/mujoco/CMakeLists.txt, the building wheel process with not be stuck. However, a further problem appeared as follows. I have searched in Google, but failed to find what is wrong with /usr/bin/ld. Could you please help me?

Currently Loaded Modulefiles:

  1. zlib/1.2.8 3) python/3.7.7 5) gmp/5.1.3 7) mpc/1.0.3 9) llvm/14.0.0
  2. sqlite/3080802 4) cmake/3.21.1 6) mpfr/3.1.4 8) gcc/8.4.0 10) clang/6.0.1

I also explicitly assign the complier. export CC=/usr/local/llvm/14.0.0/bin/clang export CXX=/usr/local/llvm/14.0.0/bin/clang++

pip wheel dist/mujoco-2.2.1.tar.gz, and then

[ 58%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_strings.dir/str_cat.cc.o [ 58%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_strings.dir/numbers.cc.o [ 58%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_strings.dir/str_replace.cc.o [ 58%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_strings.dir/str_split.cc.o [ 58%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_strings.dir/string_view.cc.o [ 58%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_strings.dir/substitute.cc.o [ 58%] Linking CXX static library libabsl_city.a [ 58%] Built target absl_city [ 58%] Linking CXX static library libabsl_malloc_internal.a [ 58%] Built target absl_malloc_internal [ 58%] Building CXX object _deps/abseil-cpp-build/absl/synchronization/CMakeFiles/absl_graphcycles_internal.dir/internal/graphcycles.cc.o [ 58%] Linking CXX static library libabsl_demangle_internal.a [ 58%] Built target absl_demangle_internal [ 58%] Linking CXX static library libabsl_graphcycles_internal.a [ 58%] Built target absl_graphcycles_internal [ 58%] Linking CXX static library libabsl_strings.a [ 58%] Built target absl_strings [ 58%] Building CXX object _deps/abseil-cpp-build/absl/debugging/CMakeFiles/absl_symbolize.dir/symbolize.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/hash/CMakeFiles/absl_hash.dir/internal/hash.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/time/CMakeFiles/absl_time.dir/civil_time.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_cord_internal.dir/internal/cord_internal.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/time/CMakeFiles/absl_time.dir/clock.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/time/CMakeFiles/absl_time.dir/duration.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_cord_internal.dir/internal/cord_rep_btree.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/time/CMakeFiles/absl_time.dir/time.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/time/CMakeFiles/absl_time.dir/format.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_cord_internal.dir/internal/cord_rep_btree_navigator.cc.o [ 66%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_cord_internal.dir/internal/cord_rep_btree_reader.cc.o [ 75%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_cord_internal.dir/internal/cord_rep_concat.cc.o [ 75%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_cord_internal.dir/internal/cord_rep_crc.cc.o [ 75%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_cord_internal.dir/internal/cord_rep_ring.cc.o [ 75%] Building CXX object _deps/abseil-cpp-build/absl/strings/CMakeFiles/absl_cord_internal.dir/internal/cord_rep_consume.cc.o [ 75%] Linking CXX shared module _constants.cpython-37m-x86_64-linux-gnu.so /usr/bin/ld: unrecognized option '-plugin' /usr/bin/ld: use the --help option for usage information clang-14: error: linker command failed with exit code 1 (use -v to see invocation) gmake[2]: *** [_constants.cpython-37m-x86_64-linux-gnu.so] Error 1 gmake[1]: *** [CMakeFiles/_constants.dir/all] Error 2 gmake[1]: *** Waiting for unfinished jobs.... [ 75%] Linking CXX static library libabsl_symbolize.a [ 75%] Built target absl_symbolize [ 75%] Linking CXX static library libabsl_time.a [ 75%] Built target absl_time [ 75%] Linking CXX static library libabsl_hash.a [ 75%] Built target absl_hash [ 75%] Linking CXX static library libabsl_cord_internal.a [ 75%] Built target absl_cord_internal [ 75%] Linking CXX shared module _errors.cpython-37m-x86_64-linux-gnu.so /usr/bin/ld: unrecognized option '-plugin' /usr/bin/ld: use the --help option for usage information clang-14: error: linker command failed with exit code 1 (use -v to see invocation) gmake[2]: *** [_errors.cpython-37m-x86_64-linux-gnu.so] Error 1 gmake[1]: *** [CMakeFiles/_errors.dir/all] Error 2 [ 75%] Linking CXX shared module _enums.cpython-37m-x86_64-linux-gnu.so /usr/bin/ld: unrecognized option '-plugin' /usr/bin/ld: use the --help option for usage information clang-14: error: linker command failed with exit code 1 (use -v to see invocation) gmake[2]: *** [_enums.cpython-37m-x86_64-linux-gnu.so] Error 1 gmake[1]: *** [CMakeFiles/_enums.dir/all] Error 2 gmake: *** [all] Error 2 Traceback (most recent call last): File "", line 36, in File "", line 34, in File "/tmp/pbs.6440532.pbsserver/pip-req-build-bn1addkc/setup.py", line 321, in 'include/mujoco/*.h', File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/init.py", line 87, in setup return distutils.core.setup(**attrs) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/core.py", line 185, in setup return run_commands(dist) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/core.py", line 201, in run_commands dist.run_commands() File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/dist.py", line 973, in run_commands self.run_command(cmd) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/dist.py", line 1217, in run_command super().run_command(command) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/dist.py", line 992, in run_command cmd_obj.run() File "/usr/local/python/3.7.7/lib/python3.7/site-packages/wheel/bdist_wheel.py", line 223, in run self.run_command('build') File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/cmd.py", line 319, in run_command self.distribution.run_command(command) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/dist.py", line 1217, in run_command super().run_command(command) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/dist.py", line 992, in run_command cmd_obj.run() File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/command/build.py", line 24, in run super().run() File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/command/build.py", line 132, in run self.run_command(cmd_name) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/cmd.py", line 319, in run_command self.distribution.run_command(command) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/dist.py", line 1217, in run_command super().run_command(command) File "/home/zhc/.local/lib/python3.7/site-packages/setuptools/_distutils/dist.py", line 992, in run_command cmd_obj.run() File "/tmp/pbs.6440532.pbsserver/pip-req-build-bn1addkc/setup.py", line 144, in run self._configure_cmake() File "/tmp/pbs.6440532.pbsserver/pip-req-build-bn1addkc/setup.py", line 244, in _configure_cmake cwd=self.build_temp) File "/usr/local/python/3.7.7/lib/python3.7/subprocess.py", line 363, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command '['cmake', '--build', '.', '-j24', '--config', 'Release']' returned non-zero exit status 2. error: subprocess-exited-with-error

× python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip. full command: /usr/local/python/3.7.7/bin/python3.7 -u -c ' exec(compile('"""""" This is -- a caller that pip uses to run setup.py # # - It imports setuptools before invoking setup.py, to enable projects that directly # import from distutils.core to work with newer packaging standards. # - It provides a clear error message when setuptools is not installed. # - It sets sys.argv[0] to the underlying setup.py, when invoking setup.py so # setuptools doesn'"'"'t think the script is -c. This avoids the following warning: # manifest_maker: standard file '"'"'-c'"'"' not found". # - It generates a shim setup.py, for handling setup.cfg-only projects. import os, sys, tokenize

try: import setuptools except ImportError as error: print( "ERROR: Can not execute setup.py since setuptools is not available in " "the build environment.", file=sys.stderr, ) sys.exit(1)

file = %r sys.argv[0] = file

if os.path.exists(file): filename = file with tokenize.open(file) as f: setup_py_code = f.read() else: filename = "" setup_py_code = "from setuptools import setup; setup()"

exec(compile(setup_py_code, filename, "exec")) '"'"''"'"''"'"' % ('"'"'/tmp/pbs.6440532.pbsserver/pip-req-build-bn1addkc/setup.py'"'"',), "", "exec"))' bdist_wheel -d /tmp/pbs.6440532.pbsserver/pip-wheel-d1r6m3tv cwd: /tmp/pbs.6440532.pbsserver/pip-req-build-bn1addkc/ error ERROR: Failed building wheel for mujoco Running setup.py clean for mujoco Running command python setup.py clean running clean removing 'build/temp.linux-x86_64-cpython-37' (and everything under it) removing 'build/lib.linux-x86_64-cpython-37' (and everything under it) 'build/bdist.linux-x86_64' does not exist -- can't clean it 'build/scripts-3.7' does not exist -- can't clean it removing 'build' Failed to build mujoco ERROR: Failed to build one or more wheels Exception information: Traceback (most recent call last): File "/home/zhc/.local/lib/python3.7/site-packages/pip/_internal/cli/base_command.py", line 167, in exc_logging_wrapper status = run_func(*args) File "/home/zhc/.local/lib/python3.7/site-packages/pip/_internal/cli/req_command.py", line 247, in wrapper return func(self, options, args) File "/home/zhc/.local/lib/python3.7/site-packages/pip/_internal/commands/wheel.py", line 176, in run raise CommandError("Failed to build one or more wheels") pip._internal.exceptions.CommandError: Failed to build one or more wheels Remote version of pip: 22.2.2 Local version of pip: 22.2.2 Was pip installed by pip? True Removed build tracker: '/tmp/pbs.6440532.pbsserver/pip-build-tracker-ey5d2xv0'

zhihaocheng avatar Aug 08 '22 12:08 zhihaocheng

I am stuck with installing mujoco on apple siliicon m1

Building wheels for collected packages: mujoco Building wheel for mujoco (setup.py) ... error error: subprocess-exited-with-error

× python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> [68 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.macosx-10.9-x86_64-cpython-311 creating build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/viewer.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/renderer.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/renderer_test.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/init.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/rollout.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/rollout_test.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/bindings_test.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/viewer_test.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/render_test.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco copying mujoco/gl_context.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco creating build/lib.macosx-10.9-x86_64-cpython-311/mujoco/cgl copying mujoco/cgl/cgl.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco/cgl copying mujoco/cgl/init.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco/cgl creating build/lib.macosx-10.9-x86_64-cpython-311/mujoco/egl copying mujoco/egl/init.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco/egl copying mujoco/egl/egl_ext.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco/egl creating build/lib.macosx-10.9-x86_64-cpython-311/mujoco/osmesa copying mujoco/osmesa/init.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco/osmesa creating build/lib.macosx-10.9-x86_64-cpython-311/mujoco/glfw copying mujoco/glfw/init.py -> build/lib.macosx-10.9-x86_64-cpython-311/mujoco/glfw running build_ext Traceback (most recent call last): File "", line 2, in File "", line 34, in File "/private/var/folders/25/3c_cvnxx415_zr7xxz5k1_zh0000gn/T/pip-install-pscr4xgl/mujoco_d4b94e5e211c43dcbadb4e0ddb330867/setup.py", line 418, in setup(**SETUP_KWARGS) File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/init.py", line 103, in setup return distutils.core.setup(**attrs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/core.py", line 185, in setup return run_commands(dist) ^^^^^^^^^^^^^^^^^^ File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/core.py", line 201, in run_commands dist.run_commands() File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/dist.py", line 969, in run_commands self.run_command(cmd) File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/dist.py", line 989, in run_command super().run_command(command) File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/dist.py", line 988, in run_command cmd_obj.run() File "/Users/raviwar/miniconda/lib/python3.11/site-packages/wheel/bdist_wheel.py", line 364, in run self.run_command("build") File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/cmd.py", line 318, in run_command self.distribution.run_command(command) File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/dist.py", line 989, in run_command super().run_command(command) File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/dist.py", line 988, in run_command cmd_obj.run() File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/command/build.py", line 131, in run self.run_command(cmd_name) File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/cmd.py", line 318, in run_command self.distribution.run_command(command) File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/dist.py", line 989, in run_command super().run_command(command) File "/Users/raviwar/miniconda/lib/python3.11/site-packages/setuptools/_distutils/dist.py", line 988, in run_command cmd_obj.run() File "/private/var/folders/25/3c_cvnxx415_zr7xxz5k1_zh0000gn/T/pip-install-pscr4xgl/mujoco_d4b94e5e211c43dcbadb4e0ddb330867/setup.py", line 156, in run self._mujoco_framework_path) = self._find_mujoco() ^^^^^^^^^^^^^^^^^^^ File "/private/var/folders/25/3c_cvnxx415_zr7xxz5k1_zh0000gn/T/pip-install-pscr4xgl/mujoco_d4b94e5e211c43dcbadb4e0ddb330867/setup.py", line 170, in _find_mujoco raise RuntimeError( RuntimeError: MUJOCO_PATH environment variable is not set [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for mujoco Running setup.py clean for mujoco Failed to build mujoco

raviwaarr avatar Oct 04 '23 04:10 raviwaarr

@raviwaarr Make sure to set your environment variables MUJOCO_PATH and MUJOCO_PLUGIN_PATH to point to the correct directories (the root mujoco path like /home/users/ben/.mujoco/mujoco-3.0.0 and /home/users/ben/.mujoco/mujoco-3.0.0/bin/mujoco_plugin for example)

bennevans avatar Oct 18 '23 21:10 bennevans

best not use conda environments if possible. I switched to python venv and nothing went wrong :)

ocg2347 avatar Nov 14 '23 13:11 ocg2347