====== Installations ====== ===== Spletni naslovi ===== * https://www.python.org/ * https://docs.python.org/3/ * https://pypi.python.org/pypi * http://www.lfd.uci.edu/~gohlke/pythonlibs/ ===== Knjige o Pythonu ===== * http://www.amazon.com/Learning-Python-5th-Mark-Lutz/dp/1449355730 * http://www.amazon.com/Programming-Python-Mark-Lutz/dp/0596158106 * http://www.amazon.com/Programming-Python-Complete-Introduction-Language/dp/0321680561 * http://www.amazon.com/Python-Essential-Reference-David-Beazley/dp/0672329786 * http://www.amazon.com/Python-Cookbook-Third-David-Beazley/dp/1449340377 * http://www.amazon.com/Python-Data-Analysis-Wrangling-IPython/dp/1449319793 * http://www.amazon.com/Data-Science-Scratch-Principles-Python/dp/149190142X ===== Installing on Windows ===== C:\Python34 See [[https://docs.python.org/3.4/using/windows.html|Using Python on Windows]]. Add new system variable ''PY_HOME'' with value ''c:\python34''. Add to PATH (Control Panel/System and Security/System/Advanced) %PY_HOME%;%PY_HOME%\scripts See also [[http://stackoverflow.com/questions/3701646/how-to-add-to-the-pythonpath-in-windows-7|stackoverflow]] Add new system variable PYTHONPATH with value ''%PY_HOME%\Lib;%PY_HOME%\DLLs;%PY_HOME%\Lib\lib-tk''. In command window as administrator assoc .py=Python.File ftype Python.File=C:\python34\python.exe "%1" %* assoc .pyw=PythonW.File ftype PythonW.File=C:\python34\pythonw.exe "%1" %* {{notes:pics:pyassoc.png}} C:\Users\batagelj\work\Python\PyNet python -m pip install NetworkX {{notes:pics:pynetworkx.png}} Installing Python packages http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyparsing http://www.lfd.uci.edu/~gohlke/pythonlibs/#python-dateutil http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy http://www.lfd.uci.edu/~gohlke/pythonlibs/#pytz http://www.lfd.uci.edu/~gohlke/pythonlibs/#six http://www.lfd.uci.edu/~gohlke/pythonlibs/#setuptools http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib http://www.lfd.uci.edu/~gohlke/pythonlibs/#pil http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy http://www.lfd.uci.edu/~gohlke/pythonlibs/#pytables http://www.lfd.uci.edu/~gohlke/pythonlibs/#pandas ===== Resources ===== * http://stackoverflow.com/questions/3701646/how-to-add-to-the-pythonpath-in-windows-7 * https://docs.python.org/3.4/using/windows.html * http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows