https://github.com/ccamara/noteable_test_python
https://github.com/ccamara/noteable_test_python
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ccamara/noteable_test_python
- Owner: ccamara
- Created: 2023-01-23T16:12:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-23T16:15:45.000Z (over 3 years ago)
- Last Synced: 2025-04-07T04:31:43.094Z (about 1 year ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Noteable test
This repository is designed for testing noteable environment.
## Virtual environments
Virtual environments are managed by `conda`, which means that you should have [Anaconda distribution](https://www.anaconda.com) installed (Read [installing instructions on their website](https://www.anaconda.com/distribution/))
**Activate virtual environment**
```
conda activate env/
```
**Deactivate virtual environment:**
```
conda deactivate
```
**Update virtual environment from `environment.yml`:**
```
conda env update -f environment.yml
```
**Recreate virtual environment from `environment.yml`:**
```
conda env create --prefix env -f environment.yml
```