We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf9294 commit af083b7Copy full SHA for af083b7
tools/build_steps.sh
@@ -24,8 +24,18 @@ function get_os {
24
25
26
function before_build {
27
- # Manylinux Python version set in build_lib
+ if [ ! -e /usr/local/lib ]; then
28
+ sudo mkdir -p /usr/local/lib
29
+ sudo chmod 777 /usr/local/lib
30
+ touch /usr/local/lib/.dir_exists
31
+ fi
32
+ if [ ! -e /usr/local/include ]; then
33
+ sudo mkdir -p /usr/local/include
34
+ sudo chmod 777 /usr/local/include
35
+ touch /usr/local/include/.dir_exists
36
37
if [ -n "$IS_OSX" ]; then
38
+ # get_macpython_environment ${MB_PYTHON_VERSION} venv
39
python3.9 -m venv venv
40
source venv/bin/activate
41
# Use gfortran from conda
0 commit comments