How to install atari-py in Windows 10? [duplicate] - python

This question already has answers here:
OpenAI Gym Atari on Windows
(5 answers)
Closed 2 years ago.
I tried to install lib pack atari-py, and can not find any clear information, most of them wrote that it is no way to install this pack into Win 10 at moment.
pip install gym[atari]
I have this error:
Unable to execute 'make build -C atari_py/ale_interface -j 3'. HINT: are you sure `make` is installed?
error: [Error 2] The system cannot find the file specified
How to find this "make" file and configure it ?! Any information would be appreciated !

From https://github.com/openai/gym:
We currently support Linux and OS X running Python 2.7 or 3.5.
No Windows.

Related

How do I install matplotlib on pyCharm [duplicate]

This question already has answers here:
Can't install matplotlib to pycharm
(3 answers)
Closed 2 years ago.
I'm new to python and I'm using PyCharm as my IDE. I've been able to successfully install other packages like numpy, pandas etc. However, when I'm installing matplotlib, I keep getting the error:
src/checkdep_freetype2.c(5): fatal error C1189: #error: "FreeType version 2.3 or higher is required. You may set the MPLLOCALFREETYPE environment variable to 1 to let Matplotlib download it."
I installed it through the command prompt and it installed correctly but (I believe) PyCharm creates it's own environment and does not recognize packages installed through command prompt even though I tried to install them in the same path as other packages in PyCharm. Can you please help?
I had to run the command "pip install updates" and after that I could install the matplotlib package. It turns out that my pip wasn't of the latest version.

problem arising while installing pandas library in python [duplicate]

This question already has answers here:
'pip' is not recognized as an internal or external command
(40 answers)
Closed 3 years ago.
i am installing pandas for python on windows 10.
this is the code i am typing in cmd:
pip install pandas
normally this should have led to the installation of pandas. however, i am getting the following error in cmd:
C:>pip install pandas
'pip' is not recognized as an internal or external command,
operable program or batch file.
i have installed anaconda before.
I would first guess that pip is not installed. Which version of Python are you using? Is python set in your path correctly?
If python 3, pip should be installed, not always the case with python 2. You can use this
https://bootstrap.pypa.io/get-pip.py. This should set you straight.
OS : Widwos
Follow the link "https://www.liquidweb.com/kb/install-pip-windows/" to install pip

Unable to install new packages for Python 2.7 Mac Terminal [duplicate]

This question already has answers here:
Python pip install module is not found. How to link python to pip location?
(15 answers)
Closed 5 years ago.
I have installed Python 2.7 on my Mac, but I am unable to install packages using pip2.7 install. Any time I try to install a package in the terminal, for example,
pip2.7 install pandas
I get the OSError:
OSError: [Errno 1] Operation not permitted:
I also have Python 3.6 installed and I am able to install packages for that version, but I have some work that needs to be done in 2.7 and I want to be able to run my script and ensure that it works in 2.7.
you can't change thing in /system on mac and the default python‘s library of mac is here. So you can't install anything.
The best way is install a new python of 2.7
The another way is close the rootless of mac.

How to install the module pysqlite2 [duplicate]

This question already has answers here:
error: Unable to find vcvarsall.bat
(42 answers)
Closed 8 years ago.
I want to install the PySqlite2 module in my python library. I opened command prompt and went to the download directory. This contains the Pysqlite-2.6.3 package extracted. I entered python setup.py install. It starts copying all the files untill it gives: Errror: Unable to find vcvarsall.bat. I can't seem to figure to out. My systems runs a 32bit version of windows 7.
While running setup.py for package installations Python 2.7 searches for an installed Visual Studio 2008. You can trick Python to use a newer Visual Studio by setting the correct path in VS90COMNTOOLS environment variable before calling setup.py.
Find more here.

How should I install a Python module in windows [duplicate]

This question already has answers here:
error: Unable to find vcvarsall.bat
(42 answers)
Closed 8 years ago.
I downloaded the cosmolopy Python library and tried to install it in every possible way...
Finally, I saved Cosmolopy as c:\python27\Lib\cosmolopy\...
1 Then run the setup file which gives me error
2 Run the following command form command prompt
python setup.py build
python setup.py install
BUT AGAIN GIVES ME ERROR: Unable to find vcvarsall.bat
PLEASE HELP ME OUT IT'S TALKING A LOT OF TIME IN INSTALLING MODULE
You could just put it in the same folder as your project.
EG:
Some_Directory\
python_file.py
The_module.py

Categories

Resources