Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 986 Bytes

python_all.md

File metadata and controls

24 lines (21 loc) · 986 Bytes

Python

About

I prefer this:

  • Machine: Windows 10 + Ubuntu via WSL.
  • [REPLACE] Editor - ST3
  • [REPLACE] Compiler, Debugger
    • for most (OOP, Boost) projects - CppFastOlympicCoding package in ST3.
    • for Excel projects - use CMake on bash terminal.
    • for Blockchain projects - use eosio.cdt on bash terminal

Anaconda

pip

  • [RECOMMENDED] Install in conda environment.
    • On Windows, open "Anaconda Prompt".
    • > pip install <package-name>
    • Check for the package if installed: try conda list on same/separate terminal.
    • DONE!
  • Install at a custom location using pip install <package> -t <directory>.
    e.g. pip install XlsxWriter -t F:\Softwares\Python\Python37\Lib

References