Skip to content Skip to sidebar Skip to footer

How Do You Install Pydde To Python 3.4 And Not Python 2.4

I am currently trying to install the PyDDE package. Going to the command line and running pip install PyDDE initially didn't work, so I downloaded the zip package from https://gith

Solution 1:

You need to use pip3:

pip3 install PyDDE 

pip installs python2 packages and pip3 does your python3 packages.

You need python3 in your pythonpath go to:

My Computer/Properties/Advanced System Settings/Environment Variables

And add C:\Python34\;C:\Python34\Scripts\ to your pythonpath.

Then download get-pip.py and run python34 get-pip.py

Post a Comment for "How Do You Install Pydde To Python 3.4 And Not Python 2.4"