-
Notifications
You must be signed in to change notification settings - Fork 10
Description
In 64bit window machine, the following two options for the PopGen installation are not working
• When I run this command “easy_install popgen” before installing PyYAML, I get the following message. "ImportError: No module named yaml"
• As I run this command “pip install popgen”, I get the following message. "Could not find any downloads that satisfy the requirement popgen" and "No distributions at all found for popgen. Storing debug log for failure in C:\Users\dyou31\pip\pip.log"
There are two ways to successfully install PopGen 2.0 in my 64bit Window machine. I tried both ways to install PopGen 2.0 with success.
- “easy_install popgen” is working as following the below steps:
a. Before running “easy_install popgen”, the following dependencies must be installed in my machine.
• numpy 1.9.2
• scipy 0.16.1
• pandas 0.16.1
• PyYAML 3.11
• pytz 2015.2
• dateutil 2.4.2
b. The command “easy_install popgen” worked after changing directory. That is, I needed to change directory to one upper directory where “setup.py” is located. For example, “setup.py” is placed in the directory “C:/workspace/popgen” of my computer. In a command prompt, I changed directory to “C:/workspace”
c. And then runs the command “easy_install” by adding the directory name where “setup.py” is located. That is, I ran the command “easy_install popgen” because “setup.py” is located in the directory “popgen”.
- Run a command “python setup.py install” after changing to the directory where setup.py is located. Before running this command, the dependencies mentioned above must be installed.