Python Forum

Full Version: Upgrade Setuptools on Python 3.4
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I have Python 3.4, with setuptools 18.3 on workstation without Internet access.
I am going to install module Crypto but it neeeds version setuptools 18.5 or newer.
-----------------------------------------------------------------------------------
C:\Python\cryptography-2.3.1>python setup.py
Traceback (most recent call last):
File "setup.py", line 28, in <module>
"cryptography requires setuptools 18.5 or newer, please upgrade to a "
RuntimeError: cryptography requires setuptools 18.5 or newer, please upgrade to
a newer version of setuptools
-----------------------------------------------------------------------------------

I have downloaded and installed version setuptools 40.4 but python doesn't see new version ((
C:\Python\cryptography-2.3.1>python -m easy_install --version
setuptools 18.2

Could you please help me with my issue!

Alex
use 1st:
pip install --upgrade pip
then:
pip install crypto
Thank you for your answer, but it doesn't help me.

My workstation with python doesn't have Internet access.

pip install --upgrade pip
Requirement already up-to-date: pip in c:\python34\lib\site-packages
pip install crypto
Could not find a version that satisfies the requirement crypto (from versions:)
No matching distribution found for crypto

Alex