mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: minor
This commit is contained in:
parent
935cb89a15
commit
f9558890f3
2 changed files with 3 additions and 3 deletions
|
|
@ -45,7 +45,7 @@ public class PythonCondaInterpreter extends Interpreter {
|
|||
private Pattern activatePattern = Pattern.compile("activate\\s*(.*)");
|
||||
private Pattern deactivatePattern = Pattern.compile("deactivate");
|
||||
private Pattern installPattern = Pattern.compile("install\\s*(.*)");
|
||||
private Pattern uninstallPattern = Pattern.compile("[uninstall|remove]\\s*(.*)");
|
||||
private Pattern uninstallPattern = Pattern.compile("uninstall\\s*(.*)");
|
||||
private Pattern helpPattern = Pattern.compile("help");
|
||||
private Pattern infoPattern = Pattern.compile("info");
|
||||
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ limitations under the License.
|
|||
<pre>%python.conda list</pre>
|
||||
</div>
|
||||
<div>
|
||||
Install
|
||||
Install Package
|
||||
<pre>%python.conda install [PACKAGE NAME]</pre>
|
||||
</div>
|
||||
<div>
|
||||
Uninstall
|
||||
Uninstall Package
|
||||
<pre>%python.conda uninstall [PACKAGE NAME]</pre>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue