pip install -r requirements.txt on MacOS
See original GitHub issueI installed Python 3.7.2 and update alias for python and pip to point 3.7.2 version
Could not find a version that satisfies the requirement mlagents_envs<0.7,>=0.6.2 (from obstacle-tower-env==1.2->-r requirements.txt (line 1)) (from versions: ) No matching distribution found for mlagents_envs<0.7,>=0.6.2 (from obstacle-tower-env==1.2->-r requirements.txt (line 1))
System
MacOS 10.14.3
Python 3.7.2 (Python 3.7.2 (v3.7.2:9a3ffc0492, Dec 24 2018, 02:44:43) [Clang 6.0 (clang-600.0.57)] on darwin)
pip 19.0.2 (pip 19.0.2 from /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pip (python 3.7))
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:7 (3 by maintainers)
Top Results From Across the Web
python pip not working on requirements.txt after OS X 10.8 ...
If you want to install packages through a requirements file, you need the --requirement/-r option: $ pip install -r requirements.txt.
Read more >How to install Python packages with pip and requirements.txt
Install packages with pip: -r requirements.txt. The following command will install the packages according to the configuration file requirements ...
Read more >user_guide.rst.txt - PIP documentation
Logically, a Requirements file is just a list of :ref:`pip install` arguments ... -m pip freeze > requirements.txt python -m pip install -r...
Read more >Using Python's pip to Manage Your Projects' Dependencies
On macOS and Linux, PATH is part of the environment variables. ... (venv) C:\> python -m pip install -r requirements.txt.
Read more >Installing packages using pip and virtual environments
This guide discusses how to install packages using pip and a virtual environment manager: ... Unix/macOS ... python3 -m pip install -r requirements.txt....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @iamchathu
This error is because
mlagents_envs
currently does not support Python greater than 3.7.0. I will look into enabling python 3.7.x support for the next release.@iamchathu Just to be clear, the current workflow requires Python 3.6.x, so you can either downgrade your OS python, or preferably set up a conda environment with Python 3.6 for the Unity Challenge.