Skip to content

vahidpartovinia/pythonworkshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

How To Install Python 2.7 Anaconda

We suggest installing Anaconda. Installation of Python using Anaconda is local and does not require administrator rights.
The graphical installer for Windows, MacOS, or Linux is here.

Choose your operating system and download the Anaconda installer for Python 2.7 version.

Then, for Windows and MacOS, double click the installer to launch and simply follow the instructions.

For Linux, open a terminal window and enter the following to install Anaconda for Python 2.7:
bash ~/Downloads/Anaconda2-4.4.0-Linux-x86_64.sh

This installation includes Jupyter and Python 2.7.


Now, we will need to install some Python libraries in order to be ready for the workshop.
To do so, please open a terminal window if you are working with MacOS or Linux.

For those that are working with Windows, you can go to Windows Start menu located in the lower left portion of the desktop and search for ‘Command Prompt’ in the search box located at the bottom of the menu.
Only for Windows users, before installing anything, we have to write the following command into the ‘Command Prompt’:
conda config --add channels conda-forge

This way, we can use the fowlling command in order to install the packages we need:
conda install PACKAGENAME.

Here is the list of libraries we need :
-keras
that will automatically install theano, and
-tensorflow

For example, type the command: conda install keras
and you will probably need to answer by "y" to a question about updating or installing other related libraries that will be suggested to you.

You can now open a Jupyter notebook to get started with the following command: jupyter-notebook


For those that want to work later on different Python platforms more adapted to your work, you can refer to:

  1. Sublime,
  2. Pycharm, and
  3. Rodeo.

You also may use online jupyter if you do basic operations and you do not require large data handling.

Sublime

Sublime can be used to program many different languages. We suggest installing sublime text editor which includes Python highlighting and many others. You must configure the sublime editor first. 1- Run sublime 2- Tools/Build System/New Build System 3- Go to

{
     "cmd": ["python2.7", "$file"],
     "path": "User/username/anaconda/bin:$PATH",
     "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
     "selector": "source.python"  
 }

Save "untitled.sublime-build" as "conda.sublime-build" and always use this build to run your python codes. Sublime configuration may vary a bit in "path" if you use Linux, Mac, or Windows system. For Windows system sublime configuration might become tricky.

{
	"cmd": ["python", "-u", "$file"],
	"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
	"path": "c:\\myconda", "selector": "source.python"
}

In the case that you cannot configure your sublime text editor, try using browser-based Python by typing "jupyter notebook" in the command line.

#Introduction to Python Start testing your python by printing basic operations on numbers

Numbers in Python Show $\beta$

print "Hello World!"
Hello World!
print 2+2
    4

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published