update to python 3.11
This commit is contained in:
2
.idea/misc.xml
generated
2
.idea/misc.xml
generated
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (krowlog)" project-jdk-type="Python SDK" />
|
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.11 (krowlog)" project-jdk-type="Python SDK" />
|
||||||
</project>
|
</project>
|
||||||
3
.idea/ravenlog.iml
generated
3
.idea/ravenlog.iml
generated
@@ -4,8 +4,9 @@
|
|||||||
<content url="file://$MODULE_DIR$">
|
<content url="file://$MODULE_DIR$">
|
||||||
<excludeFolder url="file://$MODULE_DIR$/venv310" />
|
<excludeFolder url="file://$MODULE_DIR$/venv310" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/3rd-party" />
|
<excludeFolder url="file://$MODULE_DIR$/3rd-party" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/venv311" />
|
||||||
</content>
|
</content>
|
||||||
<orderEntry type="jdk" jdkName="Python 3.10 (krowlog)" jdkType="Python SDK" />
|
<orderEntry type="jdk" jdkName="Python 3.11 (krowlog)" jdkType="Python SDK" />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
||||||
19
instructions.md
Normal file
19
instructions.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# Instructions
|
||||||
|
|
||||||
|
## Build Standalone Bundle
|
||||||
|
|
||||||
|
You can create a bundle that includes everything, including Python, for easy distribution.
|
||||||
|
|
||||||
|
Just run `make_installer.py` with the following command. The distribution can be found in `dist/krowlog` You will have
|
||||||
|
to run this on all target platforms.
|
||||||
|
|
||||||
|
```
|
||||||
|
venv311/bin/python make_installer.py
|
||||||
|
```
|
||||||
|
|
||||||
|
## Update Python
|
||||||
|
|
||||||
|
1. install the latest python version. We need the dev version, because PyInstaller requires it.
|
||||||
|
`sudo apt install python-3.11-dev python-3.11-venv`
|
||||||
|
2. create new virtual environment with `python3.11 -m venv /path/to/venv`
|
||||||
|
3. select the venv in PyCharm
|
||||||
Reference in New Issue
Block a user