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 e7ed167 commit 8129192Copy full SHA for 8129192
1 file changed
bin/visualpy
@@ -266,7 +266,7 @@ f_get_string_pipshow() {
266
f_get_extension_path() {
267
RESULT="EMPTY"
268
if which conda-env > /dev/null 2>&1; then
269
- RESULT=`conda-env list | grep "*" | awk '{print $NF}'|tr -d ' '`/share/jupyter/nbextensions
+ RESULT=`conda-env list | grep "*" | awk -F'*' '{print $2}'|tr -d ' '`/share/jupyter/nbextension
270
else
271
RESULT=`jupyter --data-dir`/nbextensions
272
fi
0 commit comments