-
virtual environments
-
anaconda links
- Installation of Python, Spyder, Numpy, Sympy, Scipy, Pytest, Matplotlib via Anaconda (2014)
- Anaconda Package Documentation
- anaconda ska inux-x86_64 Repodata
- Peter Williams pkgw:
conda install --channel https://conda.anaconda.org/pkgw gdk-pixbuf
- Anaconda Accelerate Fast Python for GPUs and multi-core with NumbaPro and MKL Optimizations
- miniconda
tl;dr
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh bash ~/miniconda.sh -b -p ~/miniconda rm ~/miniconda.sh echo "PATH=$PATH:$HOME/miniconda/bin" >> .bashrc echo ". ~/miniconda/etc/profile.d/conda.sh" >> ~/.bash_profile
-
cython links
-
numpy issues
-
Numba
-
StackOverflow questions
-
Quantum Mechanics in Python
-
HTTP Server and Client in Python
-
Python daemon
-
Selected StackOverflow Python questions
-
Invalid Token when using Octal numbers use
0o22
instead of022
. -
The order of nested list comprehension and nested generator expression in python
-
numpy linear algebra stack overflow questions and other numpy questions
- How can I project a 3D point onto a 3D line?
- Shortest distance between a point and a line in 3 d space
- Distance between point and a line (from two points)
- How to compute angle using NumPy?
- Finding the closest point to a list of points
- Convert numpy array to tuple
- ValueError: setting an array element with a sequence
- How to zip two 1d numpy array to 2d numpy array
- numpy max vs amax vs maximum
-
In practice, what are the main uses for the new “yield from” syntax in Python 3.3?
-
-
Object Oriented Programming(OOP) in Python Full Tutorial - 2019
-
Missing Python.h in Arch
tl;dr
gcc py.c $(pkg-config --cflags --libs python3) -o py
ENV PATH=/venv/bin:$PATH
RUN \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
software-properties-common \
&& add-apt-repository -y ppa:deadsnakes \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
python3.8-venv \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& python3.8 -m venv /venv