- download Windows embeddable package (64-bit)
- unpack to a folder, eg.,
d:\misc\python-3.9.13-embed-amd64
- download
get-pip.py
from here
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>HTML Template Test</title> | |
</head> | |
<body> | |
d:\misc\python-3.9.13-embed-amd64
get-pip.py
from herecurl https://pyenv.run | bash
vi ~/.bashrc
:export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
If you receive the error shown below (or similar) when installing the arcgis
package with pip
, then you need to install the system component libkrb5-dev
:
sudo apt install libkrb5-dev
pip install arcgis
Collecting gssapi
Using cached gssapi-1.7.3.tar.gz (1.3 MB)
Preparing metadata (setup.py) ... error
error: subprocess-exited-with-error
This gist I write, because I couldn't find step by step instructions | |
how to install and start postgresql locally and not globally in the | |
operating system (which would require sudo). | |
I hope, this will help especially people new to postgresql! | |
#################################### | |
# create conda environment | |
#################################### |
from qgis.PyQt.QtCore import ( | |
QCoreApplication, | |
QDateTime, | |
) | |
from processing.gui.wrappers import WidgetWrapper | |
from qgis.gui import QgsDateTimeEdit | |
from qgis.core import ( | |
Qgis, |