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
{{ message }}
This repository was archived by the owner on Mar 13, 2020. It is now read-only.
There are two approaches to getting started with using MCD:
78
-
79
-
- Pipenv
80
-
- Pip
81
-
82
-
Pipenv is the recommended approach, however, you can still use `pip` to install dependencies.
83
-
84
-
### Pipenv (recommended)
85
-
86
-
#### Install dependencies
77
+
### Install dependencies
87
78
88
79
To install project dependencies, run the following command:
89
80
90
81
```
91
82
$ pipenv install
92
83
```
93
84
94
-
####Activate Virtual Environment
85
+
### Activate Virtual Environment
95
86
96
87
To activate a virtual environment, run the following command:
97
88
98
89
```
99
90
$ pipenv shell
100
91
```
101
92
102
-
### Pip (traditional)
103
-
104
-
#### Activate Virtual Environment
105
-
106
-
To create and activate a virtual environment, please refer to the following [guide](https://docs.python.org/3/library/venv.html#creating-virtual-environments).
107
-
108
-
#### Install dependencies
109
-
110
-
To install project dependencies, run the following command:
111
-
112
-
```
113
-
$ pip install -r requirements.txt
114
-
```
115
-
116
93
### Using MCD
117
94
118
95
Once the virtual environment has been activated, please refer to [usage](#Usage) for how to use MCD.
0 commit comments