diff --git a/examples/Installing_a_PySAGES_Environment.ipynb b/examples/Installing_a_PySAGES_Environment.ipynb index 091f587e..12816ccf 100644 --- a/examples/Installing_a_PySAGES_Environment.ipynb +++ b/examples/Installing_a_PySAGES_Environment.ipynb @@ -378,7 +378,7 @@ " -DOPENMM_PYTHON_USER_INSTALL=ON \\\n", " -Wno-dev > /dev/null\n", "\n", - "cmake --build $BUILD_PATH -j8 &> /dev/null\n", + "cmake --build $BUILD_PATH -j8 > /dev/null\n", "cmake --install $BUILD_PATH > /dev/null" ] }, @@ -407,10 +407,10 @@ "\n", "# Install python package\n", "cd $BUILD_PATH\n", - "make PythonInstall &> /dev/null\n", + "make PythonInstall > /dev/null\n", "\n", "cd $BUILD_PATH/python\n", - "pip install --target $PREFIX_USER_SITE . &> /dev/null" + "pip install --target $PREFIX_USER_SITE . > /dev/null" ] }, { @@ -444,7 +444,7 @@ "BUILD_PATH=/tmp/build/openmm-dlext\n", "rm -rf $BUILD_PATH\n", "cmake -S . -B $BUILD_PATH -Wno-dev > /dev/null\n", - "cmake --build $BUILD_PATH --target install &> /dev/null" + "cmake --build $BUILD_PATH --target install > /dev/null" ] }, { @@ -521,7 +521,7 @@ "id": "lKHxKVDRYEpP" }, "source": [ - "We clean the cache of the code generated by python for our built packages such that the upload size is smaller." + "We'll then clean the cache of the code generated by python for our built packages such that the upload size is smaller." ] }, {