Enquiry regarding the installation of "CMethods" #37
-
I think the errors happened in my case were due to the mistakes happened while installing "CMethods". |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The python-cmethods package is currentlly only available on PyPI. To install the module via pip it is recommended to create and activate a virtual environment first: For bash/sh/zsh on Linux/MacOS /unix-based systems: python3 -m venv venv
source venv/bin/activate
python -m pip install python-cmethods Windows cmd: python3 -m venv venv
call venv\Scripts\activate
python3 -m pip install python-cmethods You can also install the tool from source (the example works for unix-based systems). A note here - cloning the current master branch may contain undocumented features, since only tagged releases are considered as stable and included in the documentation at https://python-cmethods.readthedocs.io/en/stable/ git clone https://github.com/btschwertfeger/python-cmethods.git
cd python-cmethods
python3 -m venv venv
source venv/bin/activate
python3 -m pip install . |
Beta Was this translation helpful? Give feedback.
The python-cmethods package is currentlly only available on PyPI. To install the module via pip it is recommended to create and activate a virtual environment first:
For bash/sh/zsh on Linux/MacOS /unix-based systems:
python3 -m venv venv source venv/bin/activate python -m pip install python-cmethods
Windows cmd:
python3 -m venv venv call venv\Scripts\activate python3 -m pip install python-cmethods
You can also install the tool from source (the example works for unix-based systems). A note here - cloning the current master branch may contain undocumented features, since only tagged releases are considered as stable and included in the documentation at https://python-cmethods.readthedocs.i…