Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add anaconda to README #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ You can also download without having a slug initially. In this case, Kurby will
You can also use `kurby --help` to get more information on the different commands

## Installation

Quick note that Kurby uses Python 3.9 and some stuff is broken in the newer versions. Here's a quick fix if you have anaconda installed
```
conda create -n kurby python=3.9,
conda activate kurby
```

```bash
pip install kurby
kurby --help
Expand All @@ -66,6 +73,11 @@ kurby --help
mkvirtualenv kurby
workon kurby
````
### create your virtual enviroonment with Anaconda (optional)
````bash
conda create -n kurby python=3.9,
conda activate kurby
````
### Install poetry
```bash
curl -sSL https://install.python-poetry.org | python3 -
Expand Down