User Tools

Site Tools


ways-to-run-python

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
ways-to-run-python [2017/09/15 08:50]
zoza [OSX]
ways-to-run-python [2017/10/18 09:57]
zoza
Line 20: Line 20:
 source env/​bin/​activate</​code>​ source env/​bin/​activate</​code>​
 some instructions:​ http://​www.pythonforbeginners.com/​basics/​how-to-use-python-virtualenv some instructions:​ http://​www.pythonforbeginners.com/​basics/​how-to-use-python-virtualenv
 +
 +  * **docker**
 +<​code>​
 +docker run -it -p 8888:8888 -p 6006:6006 -v sharedfolder:/​root/​sharedfolder floydhub/​dl-docker:​cpu bash
 +root@4aa86b7ed9d6:​~#​ jypiter notebook
 +bash: jypiter: command not found
 +root@4aa86b7ed9d6:​~#​ jupyter notebook
 +</​code>​
 +
 +====== ipython goodies ======
 +
 +run any shell command starting with %
 +
 +for example, list files by size, or move a file to another location:
 +<code python>​%ls -lhS
 +%mv a_file.extension newlocation/​ </​code>​
 +
 +load in an external .py file:
 +
 +<code python>
 +%load file_name.py
 +</​code>​
 +
 +and call any function defined in it.
 +
 +====== pygame ======
 +
 +
 +get key from a user input as pygame.event
 +http://​content.gpwiki.org/​index.php/​Python:​Pygame_keyboard_input ​
ways-to-run-python.txt ยท Last modified: 2017/10/18 10:18 by zoza