conda create -n myenv python=3.9 (create environment)conda env create -f environment_dev.yml (create environment from file)conda env update --file environment_dev.yml (update environment - dabei sollte ich in der entsprechenden Umgebung sein)
One more example:
name: smsscraper
dependencies:
- alembic
- Flask-APScheduler
- apscheduler>=3.7.0
- python=3.10 # temporary fix, to be removed asap
- sqlalchemy=1.4.46 # temporary fix, to be removed asap
# for tests:
- pytest
- pip:
- --extra-index-url <https://nexus.prod.oscp.easycredit.intern/repository/analytics-hosted-pypi/simple>
- analytics_api>2,<3