Skip to content

Commit

Permalink
install Rcpp and dfoptim locally in a folder
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Jan 24, 2024
1 parent 7e9ae10 commit 5c16d9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BCN/BCNClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
try:
utils.install_packages(StrVector(packages_to_install))
except Exception as e:
subprocess.run(['mkdir', 'bcn_r'])
subprocess.run(['mkdir', '-p', 'bcn_r'])
utils.install_packages(StrVector(packages_to_install), lib_loc = StrVector(['bcn_r']))
check_packages = True

Expand Down
2 changes: 1 addition & 1 deletion BCN/BCNRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
try:
utils.install_packages(StrVector(packages_to_install))
except Exception as e:
subprocess.run(['mkdir', 'bcn_r'])
subprocess.run(['mkdir', '-p', 'bcn_r'])
utils.install_packages(StrVector(packages_to_install), lib_loc = StrVector(['bcn_r']))
check_packages = True

Expand Down

0 comments on commit 5c16d9b

Please sign in to comment.