产品概述
产品定价
客户价值
应用场景
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin#!/bin/bashsudo -u tione -i <<'EOF'# This will affect only the Jupyter kernel called "conda_python3".source /opt/conda/bin/activate python3# Replace fire with the name of the package you want to install.pip install fire# You can also perform "conda install" here as well.source /opt/conda/bin/deactivateEOF
#!/bin/bashsudo -u tione -i <<'EOF'# Note that "base" is special environment name, include it there as well.for env in base /opt/conda/envs/*; dosource /opt/conda/bin/activate $(basename "$env")# Installing packages in the Jupyter system environment can affect stability of your tione# Notebook Instance. You can remove this check if you'd like to install Jupyter extensions, etc.if [ $env = 'JupyterSystemEnv' ]; thencontinuefi# Replace myPackage with the name of the package you want to install.pip install fire# You can also perform "conda install" here as well.source /opt/conda/bin/deactivatedoneEOF
文档反馈