You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to make seperate environments for project and development purposes.
The base folder in your home directory. Please replace ~ with
path you wish to use.
cd ~mkdir pycatia-projectscd .\pycatia-projects\
github (development)
cd .\pycatia-projects\
# deactivate any virtualenv if activedeactivate
# clone the github repogit clone https://github.com/evereux/pycatia.git pycatia-gitcd pycatia-gitpython -m virtualenv env.\env\Scripts\activatepip install -r .\requirements\requirements.txt
pypi (production)
# deactivate any virtualenv if activedeactivatecd ~\pycatia-projects\
# first we'll create the project that uses pycatia from pypimkdir pycatia-pypicd .\pycatia-pypi\
# install and activate the virtualenvpython -m virtualenv env.\env\Scripts\activatepip install pycatia
Resultant folder structure:
Each environment (pycatia-git, pycatia-pypi) should be opened
independently with their respective virtualenvs activated within your IDE.
The text was updated successfully, but these errors were encountered:
pls note me what can i do, if i need to see mistake error.
im create venv. and clone my git project in any folder
than i dev install my module pip install -e "git project folder"
and continue develop in git folder without install to side package.
or u can add your git folder in python path, but that case u will see pylint error but all will work.
pip install -e "git project folder" dont install your project, only make symlink to folder in pyhton path... every time when you run your script in your enviroment
Development and production environments.
How to make seperate environments for project and development purposes.
The base folder in your home directory. Please replace
~
withpath you wish to use.
github (development)
pypi (production)
Resultant folder structure:
Each environment (
pycatia-git
,pycatia-pypi
) should be openedindependently with their respective virtualenvs activated within your IDE.
The text was updated successfully, but these errors were encountered: