Running my fork locally #313
-
|
Complete python noob here. I'm trying to develop my own plugins by editing existing ones, but I don't know how to launch the main program from the CL in my fork. I tried running main.py but that wants to download code from the working repo. I'm sure this is well known to python devs but I couldn't figure it out so I decided to just ask here. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Installing from GitHub SourceSince this is packaged for PyPI, if you want to work on your own source branch, after cloning from github you would: pip install --upgrade pip
pip install setuptools
pip install build
source rebuild.shfrom the root directory. This installs a build chain and a local editable copy of Not1MM. There's two ways to launch the program from the local editable copy. You can either be in the root of the source directory and type: python not1mmor be in some other directory and just type: not1mmIf you plan on contributing back your changesNot1MM is an open-source project and we welcome contributions from the community. If you'd like to contribute, please fork the repository and make changes as you'd like. Pull requests are welcome. Please be kind and run your code thru black before submitting. Please see this page before you start writing code on your pull request. It will make your life a little easier. Cheers, Mike K6GTE |
Beta Was this translation helpful? Give feedback.
Installing from GitHub Source
Since this is packaged for PyPI, if you want to work on your own source branch, after cloning from github you would:
pip install --upgrade pip pip install setuptools pip install build source rebuild.shfrom the root directory. This installs a build chain and a local editable copy of Not1MM.
There's two ways to launch the program from the local editable copy.
You can either be in the root of the source directory and type:
or be in some other directory and just type:
If you plan on contributing back your changes
Not1MM is an open-source project and we welcome contributions from the community.
If you'd like to contribute, please fork the rep…