From ef3fcec685a41be16bb9aa39915a9534596cb460 Mon Sep 17 00:00:00 2001 From: Yang Wang Date: Sat, 20 Feb 2021 07:06:16 -0500 Subject: [PATCH] Fix: cyxpy cannot be installed (#483) Add a few lines in yml file to clarify dependencies --- environment.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/environment.yml b/environment.yml index a5361d4a..1441b790 100644 --- a/environment.yml +++ b/environment.yml @@ -1,9 +1,11 @@ name: python_robotics +channels: + - conda-forge dependencies: -- python -- pip -- scipy -- numpy -- pandas -- cvxpy -- matplotlib + - python=3.9 + - pip + - scipy + - numpy + - pandas + - cvxpy + - matplotlib