Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with installing through pip install . on fresh install of Ubuntu 20.04: subprocess.CalledProcessError #188

Open
ChrisNassif opened this issue Jun 16, 2023 · 0 comments

Comments

@ChrisNassif
Copy link

ChrisNassif commented Jun 16, 2023

I tried installing flightmare through the steps on a completely new version of ubuntu 20.04 and got the following error: ERROR: Failed building wheel for flightgym. When I follow the trace it gives me the following error: subprocess.CalledProcessError: Command '['cmake', '/tmp/pip-req-build-gq0frj42', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/tmp/pip-req-build-gq0frj42/build/lib.linux-x86_64-3.6/', '-DPYTHON_EXECUTABLE=/home/animated/anaconda3/envs/Flightmare/bin/python', '-DCMAKE_BUILD_TYPE=Release']' returned non-zero exit status 1. I have had other problems doing pip install . but those were solved with #151 among other resources, but I wasn't able to find a working solution of this one anywhere on the internet. It seems to be a problem with how cmake was installed and maybe linking everything together properly? But I really don't know.

I also think that this might be a pretty significant problem but I have no clue how to fix it: CMake Error: The current CMakeCache.txt directory /tmp/pip-req-build-edrar30k/build/temp.linux-x86_64-3.6/CMakeCache.txt is different than the directory /home/animated/flightmare/flightlib/build/temp.linux-x86_64-3.6 where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt
CMake Error: The source "/tmp/pip-req-build-edrar30k/CMakeLists.txt" does not match the source "/home/animated/flightmare/flightlib/CMakeLists.txt" used to generate cache. Re-run cmake with a different source directory.

I am a bit new to ubuntu and all of this nitty gritty software stuff so please hang with me if this problem seems trivial
And thank you very much in advance to anyone that answers

Here the Log File when running pip install . --log LOG_FILE:
2023-06-16T19:29:01,016 Using pip 21.2.2 from /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip (python 3.6)
2023-06-16T19:29:01,017 Non-user install because site-packages writeable
2023-06-16T19:29:01,052 Created temporary directory: /tmp/pip-ephem-wheel-cache-3lvqchoz
2023-06-16T19:29:01,053 Created temporary directory: /tmp/pip-req-tracker-w33yjqdz
2023-06-16T19:29:01,053 Initialized build tracking at /tmp/pip-req-tracker-w33yjqdz
2023-06-16T19:29:01,053 Created build tracker: /tmp/pip-req-tracker-w33yjqdz
2023-06-16T19:29:01,053 Entered build tracker: /tmp/pip-req-tracker-w33yjqdz
2023-06-16T19:29:01,053 Created temporary directory: /tmp/pip-install-hj0r5p0o
2023-06-16T19:29:01,069 Processing /home/animated/flightmare/flightlib
2023-06-16T19:29:01,069 Created temporary directory: /tmp/pip-req-build-31wavsx1
2023-06-16T19:29:01,070 DEPRECATION: A future pip version will change local packages to be built in-place without first copying to a temporary directory. We recommend you use --use-feature=in-tree-build to test your packages with this new behavior before it becomes the default.
2023-06-16T19:29:01,070 pip 21.3 will remove support for this functionality. You can find discussion regarding this at pypa/pip#7555.
2023-06-16T19:29:01,237 Added file:///home/animated/flightmare/flightlib to build tracker '/tmp/pip-req-tracker-w33yjqdz'
2023-06-16T19:29:01,237 Running setup.py (path:/tmp/pip-req-build-31wavsx1/setup.py) egg_info for package from file:///home/animated/flightmare/flightlib
2023-06-16T19:29:01,238 Created temporary directory: /tmp/pip-pip-egg-info-qd9z6gm7
2023-06-16T19:29:01,238 Running command python setup.py egg_info
2023-06-16T19:29:01,339 running egg_info
2023-06-16T19:29:01,339 creating /tmp/pip-pip-egg-info-qd9z6gm7/flightgym.egg-info
2023-06-16T19:29:01,339 writing /tmp/pip-pip-egg-info-qd9z6gm7/flightgym.egg-info/PKG-INFO
2023-06-16T19:29:01,339 writing dependency_links to /tmp/pip-pip-egg-info-qd9z6gm7/flightgym.egg-info/dependency_links.txt
2023-06-16T19:29:01,339 writing requirements to /tmp/pip-pip-egg-info-qd9z6gm7/flightgym.egg-info/requires.txt
2023-06-16T19:29:01,339 writing top-level names to /tmp/pip-pip-egg-info-qd9z6gm7/flightgym.egg-info/top_level.txt
2023-06-16T19:29:01,339 writing manifest file '/tmp/pip-pip-egg-info-qd9z6gm7/flightgym.egg-info/SOURCES.txt'
2023-06-16T19:29:01,340 reading manifest file '/tmp/pip-pip-egg-info-qd9z6gm7/flightgym.egg-info/SOURCES.txt'
2023-06-16T19:29:01,340 writing manifest file '/tmp/pip-pip-egg-info-qd9z6gm7/flightgym.egg-info/SOURCES.txt'
2023-06-16T19:29:01,350 Source in /tmp/pip-req-build-31wavsx1 has version 0.0.1, which satisfies requirement flightgym==0.0.1 from file:///home/animated/flightmare/flightlib
2023-06-16T19:29:01,350 Removed flightgym==0.0.1 from file:///home/animated/flightmare/flightlib from build tracker '/tmp/pip-req-tracker-w33yjqdz'
2023-06-16T19:29:01,353 Requirement already satisfied: gym==0.11 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from flightgym==0.0.1) (0.11.0)
2023-06-16T19:29:01,353 Requirement already satisfied: ruamel.yaml in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from flightgym==0.0.1) (0.17.31)
2023-06-16T19:29:01,354 Requirement already satisfied: numpy in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from flightgym==0.0.1) (1.19.5)
2023-06-16T19:29:01,354 Requirement already satisfied: stable_baselines==2.10.1 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from flightgym==0.0.1) (2.10.1)
2023-06-16T19:29:01,362 Requirement already satisfied: scipy in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (1.5.4)
2023-06-16T19:29:01,363 Requirement already satisfied: pyglet>=1.2.0 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (2.0.7)
2023-06-16T19:29:01,364 Requirement already satisfied: six in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (1.16.0)
2023-06-16T19:29:01,364 Requirement already satisfied: requests>=2.0 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (2.27.1)
2023-06-16T19:29:01,371 Requirement already satisfied: cloudpickle>=0.5.5 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (2.2.1)
2023-06-16T19:29:01,371 Requirement already satisfied: matplotlib in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (3.3.4)
2023-06-16T19:29:01,371 Requirement already satisfied: opencv-python in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (4.7.0.72)
2023-06-16T19:29:01,372 Requirement already satisfied: pandas in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (1.1.5)
2023-06-16T19:29:01,372 Requirement already satisfied: joblib in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (1.1.1)
2023-06-16T19:29:01,377 Requirement already satisfied: PyOpenGL in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (3.1.7)
2023-06-16T19:29:01,378 Requirement already satisfied: Pillow in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (8.4.0)
2023-06-16T19:29:01,378 Requirement already satisfied: atari-py>=0.1.4 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (0.2.9)
2023-06-16T19:29:01,388 Requirement already satisfied: certifi>=2017.4.17 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from requests>=2.0->gym==0.11->flightgym==0.0.1) (2021.5.30)
2023-06-16T19:29:01,389 Requirement already satisfied: urllib3<1.27,>=1.21.1 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from requests>=2.0->gym==0.11->flightgym==0.0.1) (1.26.16)
2023-06-16T19:29:01,389 Requirement already satisfied: charset-normalizer~=2.0.0 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from requests>=2.0->gym==0.11->flightgym==0.0.1) (2.0.12)
2023-06-16T19:29:01,390 Requirement already satisfied: idna<4,>=2.5 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from requests>=2.0->gym==0.11->flightgym==0.0.1) (3.4)
2023-06-16T19:29:01,404 Requirement already satisfied: kiwisolver>=1.0.1 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from matplotlib->stable_baselines==2.10.1->flightgym==0.0.1) (1.3.1)
2023-06-16T19:29:01,405 Requirement already satisfied: cycler>=0.10 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from matplotlib->stable_baselines==2.10.1->flightgym==0.0.1) (0.11.0)
2023-06-16T19:29:01,405 Requirement already satisfied: python-dateutil>=2.1 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from matplotlib->stable_baselines==2.10.1->flightgym==0.0.1) (2.8.2)
2023-06-16T19:29:01,406 Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from matplotlib->stable_baselines==2.10.1->flightgym==0.0.1) (3.0.9)
2023-06-16T19:29:01,423 Requirement already satisfied: pytz>=2017.2 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from pandas->stable_baselines==2.10.1->flightgym==0.0.1) (2023.3)
2023-06-16T19:29:01,429 Requirement already satisfied: ruamel.yaml.clib>=0.2.7 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from ruamel.yaml->flightgym==0.0.1) (0.2.7)
2023-06-16T19:29:01,433 Created temporary directory: /tmp/pip-unpack-r_gd95tt
2023-06-16T19:29:01,433 Building wheels for collected packages: flightgym
2023-06-16T19:29:01,433 Created temporary directory: /tmp/pip-wheel-thbln9n8
2023-06-16T19:29:01,433 Destination directory: /tmp/pip-wheel-thbln9n8
2023-06-16T19:29:01,433 Running command /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"'; file='"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-thbln9n8
2023-06-16T19:29:01,539 running bdist_wheel
2023-06-16T19:29:01,540 running build
2023-06-16T19:29:01,540 running build_ext
2023-06-16T19:29:01,549 CMake Error: The current CMakeCache.txt directory /tmp/pip-req-build-31wavsx1/build/temp.linux-x86_64-3.6/CMakeCache.txt is different than the directory /home/animated/flightmare/flightlib/build/temp.linux-x86_64-3.6 where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt
2023-06-16T19:29:01,549 CMake Error: The source "/tmp/pip-req-build-31wavsx1/CMakeLists.txt" does not match the source "/home/animated/flightmare/flightlib/CMakeLists.txt" used to generate cache. Re-run cmake with a different source directory.
2023-06-16T19:29:01,550 Traceback (most recent call last):
2023-06-16T19:29:01,550 File "", line 1, in
2023-06-16T19:29:01,550 File "/tmp/pip-req-build-31wavsx1/setup.py", line 106, in
2023-06-16T19:29:01,550 zip_safe=False,
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/setuptools/init.py", line 153, in setup
2023-06-16T19:29:01,550 return distutils.core.setup(**attrs)
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/core.py", line 148, in setup
2023-06-16T19:29:01,550 dist.run_commands()
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 955, in run_commands
2023-06-16T19:29:01,550 self.run_command(cmd)
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:29:01,550 cmd_obj.run()
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/wheel/bdist_wheel.py", line 299, in run
2023-06-16T19:29:01,550 self.run_command('build')
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/cmd.py", line 313, in run_command
2023-06-16T19:29:01,550 self.distribution.run_command(command)
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:29:01,550 cmd_obj.run()
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/command/build.py", line 135, in run
2023-06-16T19:29:01,550 self.run_command(cmd_name)
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/cmd.py", line 313, in run_command
2023-06-16T19:29:01,550 self.distribution.run_command(command)
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:29:01,550 cmd_obj.run()
2023-06-16T19:29:01,550 File "/tmp/pip-req-build-31wavsx1/setup.py", line 59, in run
2023-06-16T19:29:01,550 self.build_extension(ext)
2023-06-16T19:29:01,550 File "/tmp/pip-req-build-31wavsx1/setup.py", line 89, in build_extension
2023-06-16T19:29:01,550 cmake_args, cwd=self.build_temp, env=env)
2023-06-16T19:29:01,550 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/subprocess.py", line 311, in check_call
2023-06-16T19:29:01,550 raise CalledProcessError(retcode, cmd)
2023-06-16T19:29:01,550 subprocess.CalledProcessError: Command '['cmake', '/tmp/pip-req-build-31wavsx1', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/tmp/pip-req-build-31wavsx1/build/lib.linux-x86_64-3.6/', '-DPYTHON_EXECUTABLE=/home/animated/anaconda3/envs/Flightmare/bin/python', '-DCMAKE_BUILD_TYPE=Release']' returned non-zero exit status 1.
2023-06-16T19:29:01,561 ERROR: Failed building wheel for flightgym
2023-06-16T19:29:01,561 Running setup.py clean for flightgym
2023-06-16T19:29:01,561 Running command /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"'; file='"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' clean --all
2023-06-16T19:29:01,666 running clean
2023-06-16T19:29:01,666 removing 'build/temp.linux-x86_64-3.6' (and everything under it)
2023-06-16T19:29:01,668 'build/lib.linux-x86_64-3.6' does not exist -- can't clean it
2023-06-16T19:29:01,668 'build/bdist.linux-x86_64' does not exist -- can't clean it
2023-06-16T19:29:01,668 'build/scripts-3.6' does not exist -- can't clean it
2023-06-16T19:29:01,677 Failed to build flightgym
2023-06-16T19:29:01,732 Installing collected packages: flightgym
2023-06-16T19:29:01,733 Created temporary directory: /tmp/pip-record-wc9lfa1_
2023-06-16T19:29:01,733 Running command /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"'; file='"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-wc9lfa1_/install-record.txt --single-version-externally-managed --compile --install-headers /home/animated/anaconda3/envs/Flightmare/include/python3.6m/flightgym
2023-06-16T19:29:01,839 running install
2023-06-16T19:29:01,839 /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/setuptools/command/install.py:37: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
2023-06-16T19:29:01,839 setuptools.SetuptoolsDeprecationWarning,
2023-06-16T19:29:01,839 running build
2023-06-16T19:29:01,839 running build_ext
2023-06-16T19:29:01,889 -- The C compiler identification is GNU 9.4.0
2023-06-16T19:29:01,922 -- The CXX compiler identification is GNU 9.4.0
2023-06-16T19:29:01,925 -- Check for working C compiler: /usr/bin/cc
2023-06-16T19:29:01,959 -- Check for working C compiler: /usr/bin/cc -- works
2023-06-16T19:29:01,960 -- Detecting C compiler ABI info
2023-06-16T19:29:01,994 -- Detecting C compiler ABI info - done
2023-06-16T19:29:02,001 -- Detecting C compile features
2023-06-16T19:29:02,002 -- Detecting C compile features - done
2023-06-16T19:29:02,003 -- Check for working CXX compiler: /usr/bin/c++
2023-06-16T19:29:02,044 -- Check for working CXX compiler: /usr/bin/c++ -- works
2023-06-16T19:29:02,044 -- Detecting CXX compiler ABI info
2023-06-16T19:29:02,086 -- Detecting CXX compiler ABI info - done
2023-06-16T19:29:02,094 -- Detecting CXX compile features
2023-06-16T19:29:02,095 -- Detecting CXX compile features - done
2023-06-16T19:29:02,095 -- ====================== !Flightmare! ======================
2023-06-16T19:29:02,095 -- ======> Setup Dependencies
2023-06-16T19:29:02,098 -- No sufficient Eigen version (3.3.4) found.
2023-06-16T19:29:02,098 -- Restoring to download Eigen sources.
2023-06-16T19:29:02,098 -- Getting Eigen...
2023-06-16T19:29:02,102 CMake Error: The current CMakeCache.txt directory /tmp/pip-req-build-31wavsx1/externals/eigen/CMakeCache.txt is different than the directory /home/animated/flightmare/flightlib/externals/eigen where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt
2023-06-16T19:29:02,103 CMake Error at cmake/eigen.cmake:13 (message):
2023-06-16T19:29:02,103 Download of Eigen failed: 1
2023-06-16T19:29:02,103 Call Stack (most recent call first):
2023-06-16T19:29:02,103 CMakeLists.txt:36 (include)

2023-06-16T19:29:02,103 -- Configuring incomplete, errors occurred!
2023-06-16T19:29:02,103 See also "/tmp/pip-req-build-31wavsx1/build/temp.linux-x86_64-3.6/CMakeFiles/CMakeOutput.log".
2023-06-16T19:29:02,104 Traceback (most recent call last):
2023-06-16T19:29:02,105 File "", line 1, in
2023-06-16T19:29:02,105 File "/tmp/pip-req-build-31wavsx1/setup.py", line 106, in
2023-06-16T19:29:02,105 zip_safe=False,
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/setuptools/init.py", line 153, in setup
2023-06-16T19:29:02,105 return distutils.core.setup(**attrs)
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/core.py", line 148, in setup
2023-06-16T19:29:02,105 dist.run_commands()
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 955, in run_commands
2023-06-16T19:29:02,105 self.run_command(cmd)
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:29:02,105 cmd_obj.run()
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/setuptools/command/install.py", line 68, in run
2023-06-16T19:29:02,105 return orig.install.run(self)
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/command/install.py", line 545, in run
2023-06-16T19:29:02,105 self.run_command('build')
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/cmd.py", line 313, in run_command
2023-06-16T19:29:02,105 self.distribution.run_command(command)
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:29:02,105 cmd_obj.run()
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/command/build.py", line 135, in run
2023-06-16T19:29:02,105 self.run_command(cmd_name)
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/cmd.py", line 313, in run_command
2023-06-16T19:29:02,105 self.distribution.run_command(command)
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:29:02,105 cmd_obj.run()
2023-06-16T19:29:02,105 File "/tmp/pip-req-build-31wavsx1/setup.py", line 59, in run
2023-06-16T19:29:02,105 self.build_extension(ext)
2023-06-16T19:29:02,105 File "/tmp/pip-req-build-31wavsx1/setup.py", line 89, in build_extension
2023-06-16T19:29:02,105 cmake_args, cwd=self.build_temp, env=env)
2023-06-16T19:29:02,105 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/subprocess.py", line 311, in check_call
2023-06-16T19:29:02,105 raise CalledProcessError(retcode, cmd)
2023-06-16T19:29:02,105 subprocess.CalledProcessError: Command '['cmake', '/tmp/pip-req-build-31wavsx1', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/tmp/pip-req-build-31wavsx1/build/lib.linux-x86_64-3.6/', '-DPYTHON_EXECUTABLE=/home/animated/anaconda3/envs/Flightmare/bin/python', '-DCMAKE_BUILD_TYPE=Release']' returned non-zero exit status 1.
2023-06-16T19:29:02,116 ERROR: Command errored out with exit status 1: /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"'; file='"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-wc9lfa1_/install-record.txt --single-version-externally-managed --compile --install-headers /home/animated/anaconda3/envs/Flightmare/include/python3.6m/flightgym Check the logs for full command output.
2023-06-16T19:29:02,116 Exception information:
2023-06-16T19:29:02,116 Traceback (most recent call last):
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/req/req_install.py", line 796, in install
2023-06-16T19:29:02,116 req_description=str(self.req),
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/operations/install/legacy.py", line 121, in install
2023-06-16T19:29:02,116 raise LegacyInstallFailure
2023-06-16T19:29:02,116 pip._internal.operations.install.legacy.LegacyInstallFailure
2023-06-16T19:29:02,116
2023-06-16T19:29:02,116 During handling of the above exception, another exception occurred:
2023-06-16T19:29:02,116
2023-06-16T19:29:02,116 Traceback (most recent call last):
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/cli/base_command.py", line 173, in _main
2023-06-16T19:29:02,116 status = self.run(options, args)
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/cli/req_command.py", line 203, in wrapper
2023-06-16T19:29:02,116 return func(self, options, args)
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/commands/install.py", line 399, in run
2023-06-16T19:29:02,116 pycompile=options.compile,
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/req/init.py", line 81, in install_given_reqs
2023-06-16T19:29:02,116 pycompile=pycompile,
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/req/req_install.py", line 800, in install
2023-06-16T19:29:02,116 six.reraise(*exc.parent)
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_vendor/six.py", line 719, in reraise
2023-06-16T19:29:02,116 raise value
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/operations/install/legacy.py", line 111, in install
2023-06-16T19:29:02,116 cwd=unpacked_source_directory,
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/utils/subprocess.py", line 278, in runner
2023-06-16T19:29:02,116 spinner=spinner,
2023-06-16T19:29:02,116 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/utils/subprocess.py", line 244, in call_subprocess
2023-06-16T19:29:02,116 raise InstallationSubprocessError(proc.returncode, command_desc)
2023-06-16T19:29:02,116 pip.internal.exceptions.InstallationSubprocessError: Command errored out with exit status 1: /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"'; file='"'"'/tmp/pip-req-build-31wavsx1/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-wc9lfa1/install-record.txt --single-version-externally-managed --compile --install-headers /home/animated/anaconda3/envs/Flightmare/include/python3.6m/flightgym Check the logs for full command output.
2023-06-16T19:29:02,121 Removed build tracker: '/tmp/pip-req-tracker-w33yjqdz'
2023-06-16T19:30:13,640 Using pip 21.2.2 from /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip (python 3.6)
2023-06-16T19:30:13,641 Non-user install because site-packages writeable
2023-06-16T19:30:13,676 Created temporary directory: /tmp/pip-ephem-wheel-cache-cgr3_uuh
2023-06-16T19:30:13,677 Created temporary directory: /tmp/pip-req-tracker-tvdxicmf
2023-06-16T19:30:13,677 Initialized build tracking at /tmp/pip-req-tracker-tvdxicmf
2023-06-16T19:30:13,677 Created build tracker: /tmp/pip-req-tracker-tvdxicmf
2023-06-16T19:30:13,677 Entered build tracker: /tmp/pip-req-tracker-tvdxicmf
2023-06-16T19:30:13,677 Created temporary directory: /tmp/pip-install-c2t34f28
2023-06-16T19:30:13,693 Processing /home/animated/flightmare/flightlib
2023-06-16T19:30:13,693 Created temporary directory: /tmp/pip-req-build-gq0frj42
2023-06-16T19:30:13,694 DEPRECATION: A future pip version will change local packages to be built in-place without first copying to a temporary directory. We recommend you use --use-feature=in-tree-build to test your packages with this new behavior before it becomes the default.
2023-06-16T19:30:13,694 pip 21.3 will remove support for this functionality. You can find discussion regarding this at pypa/pip#7555.
2023-06-16T19:30:13,865 Added file:///home/animated/flightmare/flightlib to build tracker '/tmp/pip-req-tracker-tvdxicmf'
2023-06-16T19:30:13,865 Running setup.py (path:/tmp/pip-req-build-gq0frj42/setup.py) egg_info for package from file:///home/animated/flightmare/flightlib
2023-06-16T19:30:13,865 Created temporary directory: /tmp/pip-pip-egg-info-5a72tr6m
2023-06-16T19:30:13,865 Running command python setup.py egg_info
2023-06-16T19:30:13,965 running egg_info
2023-06-16T19:30:13,965 creating /tmp/pip-pip-egg-info-5a72tr6m/flightgym.egg-info
2023-06-16T19:30:13,965 writing /tmp/pip-pip-egg-info-5a72tr6m/flightgym.egg-info/PKG-INFO
2023-06-16T19:30:13,965 writing dependency_links to /tmp/pip-pip-egg-info-5a72tr6m/flightgym.egg-info/dependency_links.txt
2023-06-16T19:30:13,965 writing requirements to /tmp/pip-pip-egg-info-5a72tr6m/flightgym.egg-info/requires.txt
2023-06-16T19:30:13,965 writing top-level names to /tmp/pip-pip-egg-info-5a72tr6m/flightgym.egg-info/top_level.txt
2023-06-16T19:30:13,965 writing manifest file '/tmp/pip-pip-egg-info-5a72tr6m/flightgym.egg-info/SOURCES.txt'
2023-06-16T19:30:13,966 reading manifest file '/tmp/pip-pip-egg-info-5a72tr6m/flightgym.egg-info/SOURCES.txt'
2023-06-16T19:30:13,966 writing manifest file '/tmp/pip-pip-egg-info-5a72tr6m/flightgym.egg-info/SOURCES.txt'
2023-06-16T19:30:13,976 Source in /tmp/pip-req-build-gq0frj42 has version 0.0.1, which satisfies requirement flightgym==0.0.1 from file:///home/animated/flightmare/flightlib
2023-06-16T19:30:13,976 Removed flightgym==0.0.1 from file:///home/animated/flightmare/flightlib from build tracker '/tmp/pip-req-tracker-tvdxicmf'
2023-06-16T19:30:13,979 Requirement already satisfied: gym==0.11 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from flightgym==0.0.1) (0.11.0)
2023-06-16T19:30:13,979 Requirement already satisfied: ruamel.yaml in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from flightgym==0.0.1) (0.17.31)
2023-06-16T19:30:13,980 Requirement already satisfied: numpy in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from flightgym==0.0.1) (1.19.5)
2023-06-16T19:30:13,980 Requirement already satisfied: stable_baselines==2.10.1 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from flightgym==0.0.1) (2.10.1)
2023-06-16T19:30:13,988 Requirement already satisfied: pyglet>=1.2.0 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (2.0.7)
2023-06-16T19:30:13,989 Requirement already satisfied: six in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (1.16.0)
2023-06-16T19:30:13,989 Requirement already satisfied: scipy in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (1.5.4)
2023-06-16T19:30:13,990 Requirement already satisfied: requests>=2.0 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (2.27.1)
2023-06-16T19:30:13,997 Requirement already satisfied: opencv-python in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (4.7.0.72)
2023-06-16T19:30:13,998 Requirement already satisfied: cloudpickle>=0.5.5 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (2.2.1)
2023-06-16T19:30:13,998 Requirement already satisfied: pandas in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (1.1.5)
2023-06-16T19:30:13,999 Requirement already satisfied: matplotlib in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (3.3.4)
2023-06-16T19:30:13,999 Requirement already satisfied: joblib in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from stable_baselines==2.10.1->flightgym==0.0.1) (1.1.1)
2023-06-16T19:30:14,004 Requirement already satisfied: PyOpenGL in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (3.1.7)
2023-06-16T19:30:14,004 Requirement already satisfied: Pillow in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (8.4.0)
2023-06-16T19:30:14,005 Requirement already satisfied: atari-py>=0.1.4 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from gym==0.11->flightgym==0.0.1) (0.2.9)
2023-06-16T19:30:14,014 Requirement already satisfied: idna<4,>=2.5 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from requests>=2.0->gym==0.11->flightgym==0.0.1) (3.4)
2023-06-16T19:30:14,015 Requirement already satisfied: urllib3<1.27,>=1.21.1 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from requests>=2.0->gym==0.11->flightgym==0.0.1) (1.26.16)
2023-06-16T19:30:14,016 Requirement already satisfied: certifi>=2017.4.17 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from requests>=2.0->gym==0.11->flightgym==0.0.1) (2021.5.30)
2023-06-16T19:30:14,016 Requirement already satisfied: charset-normalizer~=2.0.0 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from requests>=2.0->gym==0.11->flightgym==0.0.1) (2.0.12)
2023-06-16T19:30:14,031 Requirement already satisfied: cycler>=0.10 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from matplotlib->stable_baselines==2.10.1->flightgym==0.0.1) (0.11.0)
2023-06-16T19:30:14,031 Requirement already satisfied: python-dateutil>=2.1 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from matplotlib->stable_baselines==2.10.1->flightgym==0.0.1) (2.8.2)
2023-06-16T19:30:14,032 Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from matplotlib->stable_baselines==2.10.1->flightgym==0.0.1) (3.0.9)
2023-06-16T19:30:14,033 Requirement already satisfied: kiwisolver>=1.0.1 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from matplotlib->stable_baselines==2.10.1->flightgym==0.0.1) (1.3.1)
2023-06-16T19:30:14,050 Requirement already satisfied: pytz>=2017.2 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from pandas->stable_baselines==2.10.1->flightgym==0.0.1) (2023.3)
2023-06-16T19:30:14,056 Requirement already satisfied: ruamel.yaml.clib>=0.2.7 in /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages (from ruamel.yaml->flightgym==0.0.1) (0.2.7)
2023-06-16T19:30:14,060 Created temporary directory: /tmp/pip-unpack-ozd6xklp
2023-06-16T19:30:14,060 Building wheels for collected packages: flightgym
2023-06-16T19:30:14,061 Created temporary directory: /tmp/pip-wheel-o_5racw8
2023-06-16T19:30:14,061 Destination directory: /tmp/pip-wheel-o_5racw8
2023-06-16T19:30:14,061 Running command /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"'; file='"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-o_5racw8
2023-06-16T19:30:14,166 running bdist_wheel
2023-06-16T19:30:14,166 running build
2023-06-16T19:30:14,166 running build_ext
2023-06-16T19:30:14,175 CMake Error: The current CMakeCache.txt directory /tmp/pip-req-build-gq0frj42/build/temp.linux-x86_64-3.6/CMakeCache.txt is different than the directory /home/animated/flightmare/flightlib/build/temp.linux-x86_64-3.6 where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt
2023-06-16T19:30:14,176 CMake Error: The source "/tmp/pip-req-build-gq0frj42/CMakeLists.txt" does not match the source "/home/animated/flightmare/flightlib/CMakeLists.txt" used to generate cache. Re-run cmake with a different source directory.
2023-06-16T19:30:14,176 Traceback (most recent call last):
2023-06-16T19:30:14,176 File "", line 1, in
2023-06-16T19:30:14,176 File "/tmp/pip-req-build-gq0frj42/setup.py", line 106, in
2023-06-16T19:30:14,176 zip_safe=False,
2023-06-16T19:30:14,176 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/setuptools/init.py", line 153, in setup
2023-06-16T19:30:14,176 return distutils.core.setup(**attrs)
2023-06-16T19:30:14,176 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/core.py", line 148, in setup
2023-06-16T19:30:14,176 dist.run_commands()
2023-06-16T19:30:14,176 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 955, in run_commands
2023-06-16T19:30:14,176 self.run_command(cmd)
2023-06-16T19:30:14,176 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:30:14,176 cmd_obj.run()
2023-06-16T19:30:14,176 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/wheel/bdist_wheel.py", line 299, in run
2023-06-16T19:30:14,176 self.run_command('build')
2023-06-16T19:30:14,176 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/cmd.py", line 313, in run_command
2023-06-16T19:30:14,176 self.distribution.run_command(command)
2023-06-16T19:30:14,176 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:30:14,177 cmd_obj.run()
2023-06-16T19:30:14,177 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/command/build.py", line 135, in run
2023-06-16T19:30:14,177 self.run_command(cmd_name)
2023-06-16T19:30:14,177 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/cmd.py", line 313, in run_command
2023-06-16T19:30:14,177 self.distribution.run_command(command)
2023-06-16T19:30:14,177 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:30:14,177 cmd_obj.run()
2023-06-16T19:30:14,177 File "/tmp/pip-req-build-gq0frj42/setup.py", line 59, in run
2023-06-16T19:30:14,177 self.build_extension(ext)
2023-06-16T19:30:14,177 File "/tmp/pip-req-build-gq0frj42/setup.py", line 89, in build_extension
2023-06-16T19:30:14,177 cmake_args, cwd=self.build_temp, env=env)
2023-06-16T19:30:14,177 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/subprocess.py", line 311, in check_call
2023-06-16T19:30:14,177 raise CalledProcessError(retcode, cmd)
2023-06-16T19:30:14,177 subprocess.CalledProcessError: Command '['cmake', '/tmp/pip-req-build-gq0frj42', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/tmp/pip-req-build-gq0frj42/build/lib.linux-x86_64-3.6/', '-DPYTHON_EXECUTABLE=/home/animated/anaconda3/envs/Flightmare/bin/python', '-DCMAKE_BUILD_TYPE=Release']' returned non-zero exit status 1.
2023-06-16T19:30:14,187 ERROR: Failed building wheel for flightgym
2023-06-16T19:30:14,187 Running setup.py clean for flightgym
2023-06-16T19:30:14,188 Running command /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"'; file='"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' clean --all
2023-06-16T19:30:14,291 running clean
2023-06-16T19:30:14,291 removing 'build/temp.linux-x86_64-3.6' (and everything under it)
2023-06-16T19:30:14,293 'build/lib.linux-x86_64-3.6' does not exist -- can't clean it
2023-06-16T19:30:14,293 'build/bdist.linux-x86_64' does not exist -- can't clean it
2023-06-16T19:30:14,293 'build/scripts-3.6' does not exist -- can't clean it
2023-06-16T19:30:14,302 Failed to build flightgym
2023-06-16T19:30:14,359 Installing collected packages: flightgym
2023-06-16T19:30:14,360 Created temporary directory: /tmp/pip-record-jgbx75d2
2023-06-16T19:30:14,360 Running command /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"'; file='"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-jgbx75d2/install-record.txt --single-version-externally-managed --compile --install-headers /home/animated/anaconda3/envs/Flightmare/include/python3.6m/flightgym
2023-06-16T19:30:14,464 running install
2023-06-16T19:30:14,465 /home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/setuptools/command/install.py:37: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
2023-06-16T19:30:14,465 setuptools.SetuptoolsDeprecationWarning,
2023-06-16T19:30:14,465 running build
2023-06-16T19:30:14,465 running build_ext
2023-06-16T19:30:14,503 -- The C compiler identification is GNU 9.4.0
2023-06-16T19:30:14,536 -- The CXX compiler identification is GNU 9.4.0
2023-06-16T19:30:14,539 -- Check for working C compiler: /usr/bin/cc
2023-06-16T19:30:14,574 -- Check for working C compiler: /usr/bin/cc -- works
2023-06-16T19:30:14,575 -- Detecting C compiler ABI info
2023-06-16T19:30:14,608 -- Detecting C compiler ABI info - done
2023-06-16T19:30:14,616 -- Detecting C compile features
2023-06-16T19:30:14,616 -- Detecting C compile features - done
2023-06-16T19:30:14,618 -- Check for working CXX compiler: /usr/bin/c++
2023-06-16T19:30:14,659 -- Check for working CXX compiler: /usr/bin/c++ -- works
2023-06-16T19:30:14,659 -- Detecting CXX compiler ABI info
2023-06-16T19:30:14,700 -- Detecting CXX compiler ABI info - done
2023-06-16T19:30:14,707 -- Detecting CXX compile features
2023-06-16T19:30:14,708 -- Detecting CXX compile features - done
2023-06-16T19:30:14,708 -- ====================== !Flightmare! ======================
2023-06-16T19:30:14,708 -- ======> Setup Dependencies
2023-06-16T19:30:14,711 -- No sufficient Eigen version (3.3.4) found.
2023-06-16T19:30:14,711 -- Restoring to download Eigen sources.
2023-06-16T19:30:14,711 -- Getting Eigen...
2023-06-16T19:30:14,716 CMake Error: The current CMakeCache.txt directory /tmp/pip-req-build-gq0frj42/externals/eigen/CMakeCache.txt is different than the directory /home/animated/flightmare/flightlib/externals/eigen where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt
2023-06-16T19:30:14,716 CMake Error at cmake/eigen.cmake:13 (message):
2023-06-16T19:30:14,716 Download of Eigen failed: 1
2023-06-16T19:30:14,716 Call Stack (most recent call first):
2023-06-16T19:30:14,716 CMakeLists.txt:35 (include)

2023-06-16T19:30:14,716 -- Configuring incomplete, errors occurred!
2023-06-16T19:30:14,716 See also "/tmp/pip-req-build-gq0frj42/build/temp.linux-x86_64-3.6/CMakeFiles/CMakeOutput.log".
2023-06-16T19:30:14,718 Traceback (most recent call last):
2023-06-16T19:30:14,718 File "", line 1, in
2023-06-16T19:30:14,718 File "/tmp/pip-req-build-gq0frj42/setup.py", line 106, in
2023-06-16T19:30:14,718 zip_safe=False,
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/setuptools/init.py", line 153, in setup
2023-06-16T19:30:14,718 return distutils.core.setup(**attrs)
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/core.py", line 148, in setup
2023-06-16T19:30:14,718 dist.run_commands()
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 955, in run_commands
2023-06-16T19:30:14,718 self.run_command(cmd)
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:30:14,718 cmd_obj.run()
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/setuptools/command/install.py", line 68, in run
2023-06-16T19:30:14,718 return orig.install.run(self)
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/command/install.py", line 545, in run
2023-06-16T19:30:14,718 self.run_command('build')
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/cmd.py", line 313, in run_command
2023-06-16T19:30:14,718 self.distribution.run_command(command)
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:30:14,718 cmd_obj.run()
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/command/build.py", line 135, in run
2023-06-16T19:30:14,718 self.run_command(cmd_name)
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/cmd.py", line 313, in run_command
2023-06-16T19:30:14,718 self.distribution.run_command(command)
2023-06-16T19:30:14,718 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/distutils/dist.py", line 974, in run_command
2023-06-16T19:30:14,718 cmd_obj.run()
2023-06-16T19:30:14,719 File "/tmp/pip-req-build-gq0frj42/setup.py", line 59, in run
2023-06-16T19:30:14,719 self.build_extension(ext)
2023-06-16T19:30:14,719 File "/tmp/pip-req-build-gq0frj42/setup.py", line 89, in build_extension
2023-06-16T19:30:14,719 cmake_args, cwd=self.build_temp, env=env)
2023-06-16T19:30:14,719 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/subprocess.py", line 311, in check_call
2023-06-16T19:30:14,719 raise CalledProcessError(retcode, cmd)
2023-06-16T19:30:14,719 subprocess.CalledProcessError: Command '['cmake', '/tmp/pip-req-build-gq0frj42', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/tmp/pip-req-build-gq0frj42/build/lib.linux-x86_64-3.6/', '-DPYTHON_EXECUTABLE=/home/animated/anaconda3/envs/Flightmare/bin/python', '-DCMAKE_BUILD_TYPE=Release']' returned non-zero exit status 1.
2023-06-16T19:30:14,730 ERROR: Command errored out with exit status 1: /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"'; file='"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-jgbx75d2/install-record.txt --single-version-externally-managed --compile --install-headers /home/animated/anaconda3/envs/Flightmare/include/python3.6m/flightgym Check the logs for full command output.
2023-06-16T19:30:14,730 Exception information:
2023-06-16T19:30:14,730 Traceback (most recent call last):
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/req/req_install.py", line 796, in install
2023-06-16T19:30:14,730 req_description=str(self.req),
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/operations/install/legacy.py", line 121, in install
2023-06-16T19:30:14,730 raise LegacyInstallFailure
2023-06-16T19:30:14,730 pip._internal.operations.install.legacy.LegacyInstallFailure
2023-06-16T19:30:14,730
2023-06-16T19:30:14,730 During handling of the above exception, another exception occurred:
2023-06-16T19:30:14,730
2023-06-16T19:30:14,730 Traceback (most recent call last):
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/cli/base_command.py", line 173, in _main
2023-06-16T19:30:14,730 status = self.run(options, args)
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/cli/req_command.py", line 203, in wrapper
2023-06-16T19:30:14,730 return func(self, options, args)
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/commands/install.py", line 399, in run
2023-06-16T19:30:14,730 pycompile=options.compile,
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/req/init.py", line 81, in install_given_reqs
2023-06-16T19:30:14,730 pycompile=pycompile,
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/req/req_install.py", line 800, in install
2023-06-16T19:30:14,730 six.reraise(*exc.parent)
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_vendor/six.py", line 719, in reraise
2023-06-16T19:30:14,730 raise value
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/operations/install/legacy.py", line 111, in install
2023-06-16T19:30:14,730 cwd=unpacked_source_directory,
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/utils/subprocess.py", line 278, in runner
2023-06-16T19:30:14,730 spinner=spinner,
2023-06-16T19:30:14,730 File "/home/animated/anaconda3/envs/Flightmare/lib/python3.6/site-packages/pip/_internal/utils/subprocess.py", line 244, in call_subprocess
2023-06-16T19:30:14,730 raise InstallationSubprocessError(proc.returncode, command_desc)
2023-06-16T19:30:14,730 pip._internal.exceptions.InstallationSubprocessError: Command errored out with exit status 1: /home/animated/anaconda3/envs/Flightmare/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"'; file='"'"'/tmp/pip-req-build-gq0frj42/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-jgbx75d2/install-record.txt --single-version-externally-managed --compile --install-headers /home/animated/anaconda3/envs/Flightmare/include/python3.6m/flightgym Check the logs for full command output.
2023-06-16T19:30:14,734 Removed build tracker: '/tmp/pip-req-tracker-tvdxicmf'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant