easy_install install on Windows 7 32 bit - python-3.x

Trying to find out how to install or find easy_install on my Windows 7 32bit machine with Python 3.2.3 installed.
On a different machine with Windows 7 64 bit Python 3.2.3, easy_install was installed automatically into c:\python32\Scripts.
I found some instructions on how to install easy_install here, which led me to this page which tells me that to install easy_install, I need to install setuptools with the provided .exe (couldn't find). Also, I'm left to wonder what setuptools has to do with easy_install?
Thanks for any help!

easy_install is included with distribute. The simplest way to install it on Windows is from this page:
http://www.lfd.uci.edu/~gohlke/pythonlibs/#distribute

Related

TA-Lib Windows 10 install

I am trying to install TA-Lib locally on my Windows 10 machine and keep receiving the following error:
ERROR: TA_Lib-0.4.18-cp38-cp38-win_amd64.whl is not a supported wheel on >this platform.
I am running Python 3.8, and Windows 10 is 64 bit. I have tried upgrading pip, but this does not seem to help.
TA-Lib is a C-library with python wrapper. Firstly, install the C library binary, then install python wrapper. Check out Dependencies section at https://mrjbq7.github.io/ta-lib/install.html

ERROR in install opencv in my python 3.6.6

I HAVE PYTHON 3.6.6 INSTALLED IN MY WINDOWS 7 PLATFORM BUT WHEN I TRIED TO INSTALL OPENCV PACKAGE IT SAYS REQUIREMENT ALREADY SATISFIED AND IF I TRY TO IMPORT CV2 IT SAYS NO MODULE .I'VE TRIED ALL POSSIBLE METHODS ON INTERNET WHAT SHOULD I DO
i tried to download opencv exe from sourceforge and copying cv2.pyd file and then pasting it in site packages
i tried pip install opencv_python-4.0.1-cp37-cp37m-win_amd64.whl
but nothing works
The error message says that you are asking PIP install a version of cv2 for 64-bit Python 2.7, and that installation is failing. So the installation is not happening because it's the wrong version. That might be because you don't have Python 2.7, or because you have a 32-bit processor, or both. Navigate to Python36\Scripts and issue the command pip install opencv_python. Then pip will find the appropriate file to download, and install it.

Installation guide for ROS-Kinetic with Python 3.5 on Ubuntu 16.04

I'm having a ROS-node that uses Python 3.5 and I want to run it on ROS-Kinetic. This is supposed to run on Ubuntu 16.04 with Kernel 4.4.
I've read that it's complicated to match ROS-Kinetic with Python 3 because it's not officially supported...but I've also read that it is possible to do so...
There are several installation guides for specific packages and I've tried some of them but failed everytime.
What I've tried so far:
1) Installed ROS-Kinetic-desktop-full
2) pip3 install rospkg catkin_pkg
3) export PYTHONPATH = /usr/local/lib/python3.5/dist-packages
When I'm running catkin_make, the first error appearing says:
... ImportError: No module named genmsg ...
Can anyone please write an exact installation guide for making ROS-Kinetic run with Python 3.5 (without a virtual environment) or tell me what's missing in my installation?
Thanks in advance!
An alternative to Some progammer's answer, you could install the packages in global space
sudo apt-get install python3-yaml # you'll also need this
sudo pip3 install rospkg catkin_pkg
or add --user flag
pip3 install --user rospkg catkin_pkg
People used Python 3.5 + ROS-Kinetic in Ubuntu before (for example, check out cozmo_driver) and it should work according to REP3.
You are not exporting the right folder to PYTHONPATH. Try
export PYTHONPATH=/opt/ros/kinetic/lib/python2.7/dist-packages/

How to install Pillow on Python 3.5?

As the title suggested I have trouble installing Pillow on Python 3.5.2. I believe I already have pip and easyinstall preinstalled. I have viewed some tutorials and attempted to type '>$pip install Pillow' into the IDLE shell but it came back with a syntax error. I am new to programming and have no prior IT exprience so please be specific and put it in simple terms. My OS is Windows 10. Thanks.
sudo pip3 install Pillow - unix-style
pip install Pillow - windows
http://pillow.readthedocs.io/en/3.1.x/installation.html
Installing stuff on ms-windows is such a can of worms that it is probably easiest to use a specialized Python distribution for ms-windows, like Anaconda or Enghought. These come with a lot of packages pre-installed, and have their own package managers to make adding more stuff easier for you.
sudo pip3 install Pillow==5.0.0
This will saves you
Use pip install Pillow. It worked for me
try typing pip in the command line maybe you didn't install pip properly
if you didn't then go to here to install pip

PyEnchant with Python 3.4 64 bit on mac?

Is it possible to install PyEnchant 1.6.x with Python 3.4.x 64 bit on a mac?
When trying to install PyEnchant with pip install, it is installed within the 2.7 version so far.
Did anyone try to use it with version 3.4?
As it seems there is no other way to install PyEnchant (version 1.6.6 is the one most up to date as of now) to download the source codes at
https://pypi.python.org/pypi/pyenchant/
and put the unzipped files in the appropriate folder into /Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages.
This is because the automated way using pip install pyenchant leads to an install within the folder within version 2.7 so far.

Resources