Python: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 22: Line 22:


=Organizatorium=
=Organizatorium=
 
<font color=darkkhaki>
* https://opensource.com/article/18/1/running-python-application-kubernetes
* https://opensource.com/article/18/1/running-python-application-kubernetes
* Each installation of Python may have different modules installed. Python determines the path to its modules by examining the location of the <code>python3</code> executable.
* Each installation of Python may have different modules installed. Python determines the path to its modules by examining the location of the <code>python3</code> executable.
Line 28: Line 28:
** ~/Library/ApplicationSupport/iTerm2/iterm2env/versions/*/bin/python3
** ~/Library/ApplicationSupport/iTerm2/iterm2env/versions/*/bin/python3
** ~/Library/ApplicationSupport/iTerm2/Scripts/YourScript/iterm2env/versions/*/bin/python3
** ~/Library/ApplicationSupport/iTerm2/Scripts/YourScript/iterm2env/versions/*/bin/python3
</font>

Revision as of 07:08, 12 January 2022

External

Internal

Subjects

Python Versions

https://docs.python.org/3/whatsnew/

Organizatorium

  • https://opensource.com/article/18/1/running-python-application-kubernetes
  • Each installation of Python may have different modules installed. Python determines the path to its modules by examining the location of the python3 executable.
  • Python environments on Mac:
    • ~/Library/ApplicationSupport/iTerm2/iterm2env/versions/*/bin/python3
    • ~/Library/ApplicationSupport/iTerm2/Scripts/YourScript/iterm2env/versions/*/bin/python3