Actions

Difference between revisions of "Python installation"

From ACL@NCU

 
(8 intermediate revisions by the same user not shown)
Line 3: Line 3:
#create a folder c:\temp, save the following files to this folder
#create a folder c:\temp, save the following files to this folder
#Python 2.7.14 (win 32-bit)
#Python 2.7.14 (win 32-bit)
#Adding Python27 path to environment
#get-pip.py
#get-pip.py
#install_python.bat
#install_python.bat
Line 9: Line 10:
==Steps to follow==
==Steps to follow==
*Double click on the downloaded python-2.7-14.msi program.
*Double click on the downloaded python-2.7-14.msi program.
*[[Python_pathsetting|Setting path in the environmental variable]]
*Open a [https://www.howtogeek.com/194041/how-to-open-the-command-prompt-as-administrator-in-windows-8.1/ command window] and change directory to where you saved get-pip.py
*Open a [https://www.howtogeek.com/194041/how-to-open-the-command-prompt-as-administrator-in-windows-8.1/ command window] and change directory to where you saved get-pip.py
<syntaxhighlight lang="DOS" style="border:3px dashed black">
<syntaxhighlight lang="DOS" style="border:3px dashed black">
Line 19: Line 21:
*execute the install_python.bat script
*execute the install_python.bat script
<syntaxhighlight lang="DOS" style="border:3px dashed black">
<syntaxhighlight lang="DOS" style="border:3px dashed black">
install_python.bat
install_psychopy.bat
</syntaxhighlight>
</syntaxhighlight>
*After the above process are completed (without error or interruption), try the following script:
*After the above process are completed (without error or interruption), try the following script:
Line 27: Line 29:
*If everything works out, you should see a window containing a light blue square at the center as shown below (lasting for 2 seconds then vanishes).
*If everything works out, you should see a window containing a light blue square at the center as shown below (lasting for 2 seconds then vanishes).
[[File:Sq.jpg]]
[[File:Sq.jpg]]


=Install Python on Mac OSX=
=Install Python on Mac OSX=
Line 38: Line 39:


==Steps to follow==
==Steps to follow==
*Double click on the downloaded python-2.7-14-macosx10.6.pkg program.
*Install python 2.7.14 by double click on the downloaded python-2.7-14-macosx10.6.pkg program.
*Install [https://itunes.apple.com/tw/app/xcode/id497799835?mt=12 xcode] for your version of Mac OS.  
*Open a [https://www.wikihow.com/Open-a-Terminal-Window-in-Mac terminal window] and change directory to where you saved get-pip.py
*Open a [https://www.wikihow.com/Open-a-Terminal-Window-in-Mac terminal window] and change directory to where you saved get-pip.py
<syntaxhighlight lang="bash" style="border:3px dashed black">
<syntaxhighlight lang="bash" style="border:3px dashed black">
cd /Users/<Your account>/Downloads
cd /Users/<Your account>/Downloads
</syntaxhighlight>
</syntaxhighlight>
'''Note.''' "<Your account>" should be replaced by your own username on the Mac OS.
*execute get-pip.py
*execute get-pip.py
<syntaxhighlight lang="bash" style="border:3px dashed black">
<syntaxhighlight lang="bash" style="border:3px dashed black">
Line 49: Line 52:
*execute the install_python script
*execute the install_python script
<syntaxhighlight lang="bash" style="border:3px dashed black">
<syntaxhighlight lang="bash" style="border:3px dashed black">
bash install_python
bash install_psychopy
</syntaxhighlight>
</syntaxhighlight>
*After the above process are completed (without error or interruption), try the following script:
*After the above process are completed (without error or interruption), try the following script:
Line 57: Line 60:
*If everything works out, you should see a window containing a light blue square at the center as shown below (lasting for 2 seconds then vanishes).
*If everything works out, you should see a window containing a light blue square at the center as shown below (lasting for 2 seconds then vanishes).
[[File:Sq.jpg]]
[[File:Sq.jpg]]
=In case of questions=
#Please copy and paste the error message when you email me the questions.
#You can also capture the screen that shows your problem during installation. Try using [https://www.techsmith.com/screen-capture.html Snagit] for screen capture.
#In some cases on Windows, the following command
<syntaxhighlight lang="DOS" style="border:3px dashed black">
python setup.py install
</syntaxhighlight>
or
<syntaxhighlight lang="DOS" style="border:3px dashed black">
pip install <package>
</syntaxhighlight>
may require the Microsoft Visual C++ compiler for Python 27 to work. You can download this compiler from [https://www.microsoft.com/en-us/download/details.aspx?id=44266 here].

Latest revision as of 23:04, 9 March 2018

Installing Python on your Windows laptop

Files to download (from the Google Classroom "course materials" area)

  1. create a folder c:\temp, save the following files to this folder
  2. Python 2.7.14 (win 32-bit)
  3. Adding Python27 path to environment
  4. get-pip.py
  5. install_python.bat
  6. sq.py

Steps to follow

cd c:\temp
  • execute get-pip.py
python get-pip.py
  • execute the install_python.bat script
install_psychopy.bat
  • After the above process are completed (without error or interruption), try the following script:
python sq.py
  • If everything works out, you should see a window containing a light blue square at the center as shown below (lasting for 2 seconds then vanishes).

Sq.jpg

Install Python on Mac OSX

Files to download

  • assuming that you download files to the "Downloads" directory under your home directory, which is the default.
  1. python 2.7.14 for mac (python-2.7.14-macosx10.6.pkg)
  2. get-pip.py
  3. install_python
  4. sq.py

Steps to follow

  • Install python 2.7.14 by double click on the downloaded python-2.7-14-macosx10.6.pkg program.
  • Install xcode for your version of Mac OS.
  • Open a terminal window and change directory to where you saved get-pip.py
cd /Users/<Your account>/Downloads

Note. "<Your account>" should be replaced by your own username on the Mac OS.

  • execute get-pip.py
python get-pip.py
  • execute the install_python script
bash install_psychopy
  • After the above process are completed (without error or interruption), try the following script:
python sq.py
  • If everything works out, you should see a window containing a light blue square at the center as shown below (lasting for 2 seconds then vanishes).

Sq.jpg

In case of questions

  1. Please copy and paste the error message when you email me the questions.
  2. You can also capture the screen that shows your problem during installation. Try using Snagit for screen capture.
  3. In some cases on Windows, the following command
python setup.py install

or

pip install <package>

may require the Microsoft Visual C++ compiler for Python 27 to work. You can download this compiler from here.