fix: minor

This commit is contained in:
1ambda 2017-01-08 12:27:38 +09:00
parent 935cb89a15
commit f9558890f3
2 changed files with 3 additions and 3 deletions

View file

@ -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");

View file

@ -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>