Error Installing nltk module in python 2.7 64 bit - nltk

Hi when i try to install nltk mpodule on python through command
pip install nltk i get the error
Error is shown in image
enter image description here

Related

cx_Freeze does not seem to import nor install using pip

When I try to import CX_Freeze I get this error:
But I tried to compile a pygame script I made anyways and I got this error:
If you can help me that would be great.
Thank you
try the below command to see you installed packages:
pip list
If you do not see cx_Freeze displayed in the list try to install by this command:
pip install --upgrade cx_Freeze
As the error states, you need to install or update Microsoft Visual C++ to 14.0 or greater. If you don't want to, try other modules such as py2exe
See also:
https://www.pygame.org/wiki/Pygame2exe

Error in installation of keras and tensorflow on ubuntu?

While installing keras and tensorflow on ubuntu using pip, I got an error exception traceback. How to fix it ?
Since, you have not mentioned Python version, I am assuming you are using Python 2.X.
For Python 2.X and for GPU support, this should work.
In terminal, type the following 2 lines:
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.4.1-cp34-cp34m-linux_x86_64.whl
pip install --user TF_BINARY_URL
If you are not using Python 2.X, get the correct tfBinaryURL from here for your Python version.
Hope this helps.
Regards,
Sumit

PyMySQL ModuleNotFound Error Python 3.6.4

I'm on a Windows 10 machine trying to use PyMySQL from PyCharm with Python 3.6.4.
I've installed PyMySQL with pip install PyMySQL, and it was successful.
However, the line import pymysql gives me a ModuleNotFoundError (exit code 1)
This answer recommends uninstalling and then reinstalling with pip3, but that hasn't made a difference for me.
What else could I try?

python 3.3 and pip tool installation

Pip3 installation and Python 3.3 on windows vista
I have been using python 3.2 for a short time and I wanted to install pygame and other other packages. At that point I realised that I have to install pip tool as a package manager. In short, in the process, I removed python 3.2 and installed properly python 3.3 and encountered the following problems:
From python 3.3 interactive interpreter:
when I do: pip --version I get:
nameerror pip not defined
When I go Python get-pip.py I get
syntaxerror and the get is in red
sudo python 3.3 setup.py install gives error as well
But I was able to download the get-pip.py script and this script is inside my download manager. Again,there is no pip tool when I checked my python3.3 script directory.
Thank you in advance for your attention
Usually get-pip.py runs.If nothing is working, try the wheel file. Download the .whl file and run:
python.exe pip-9.0.1-py2.py3-none-any.whl
Hope this helps.

installation error of mysql for django 1.8

i'm trying to install mysql using pip and this error appears.
I'm new to python
the cmd says
"fatal error C1083: Cannot open include file: 'config-win.h: no such file or directory
error: command 'C:\\programfiles(x86)\\microsoft visual studio 10.0\\vc\\bin\\c1.exe'
failed to exit status 2"
if it is already solved i am sorry because i don't understand the presented solutions such as site.cfg that they say don't work anymore (i don't even understand it) my problem is also similar to this
I'm using python 3.4.3 and django 1.8.2
mysql-python is currently not supported by python 3
You have to install mysqlclient and PyMysql