Skip to content

Commit 5c16d9b

Browse files
install Rcpp and dfoptim locally in a folder
1 parent 7e9ae10 commit 5c16d9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BCN/BCNClassifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
try:
4141
utils.install_packages(StrVector(packages_to_install))
4242
except Exception as e:
43-
subprocess.run(['mkdir', 'bcn_r'])
43+
subprocess.run(['mkdir', '-p', 'bcn_r'])
4444
utils.install_packages(StrVector(packages_to_install), lib_loc = StrVector(['bcn_r']))
4545
check_packages = True
4646

BCN/BCNRegressor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
try:
4141
utils.install_packages(StrVector(packages_to_install))
4242
except Exception as e:
43-
subprocess.run(['mkdir', 'bcn_r'])
43+
subprocess.run(['mkdir', '-p', 'bcn_r'])
4444
utils.install_packages(StrVector(packages_to_install), lib_loc = StrVector(['bcn_r']))
4545
check_packages = True
4646

0 commit comments

Comments
 (0)