Reputation: 31
I'm creating a virtual environment with conda. I downloaded the files in this repository and tried to create the environment, but every time I got this error https://github.com/Pierian-Data/Plotly-Dashboards-with-Dash
Upvotes: 0
Views: 221
Reputation: 2744
You type the command in the wrong way. It should be conda create --name nursingdash python=3.6
--name with two dashes and python=3.6 without spaces. The following link should get you started on managing conda environments. It's a cheat sheet with the most common commands. Take care when writing conda commands - It's syntax should be entered exactly as specified or the anaconda prompt doesn't know what you mean (as you've just noticed)
Upvotes: 1