Python Tool : How to install additional package from github ?I cannot install python package in https://github.com/facebookresearch/pysparnn Please, Help to solve this problem T_T
Hi @kantawee,
Thank you for posting this question!
from Python tool:
from ayx import Alteryx Alteryx.installPackages(package="git+<a href="https://github.com/facebookresearch/pysparnn.git" target="_blank" rel="nofollow noopener noreferrer">https://github.com/facebookresearch/pysparnn.git</a>")
Source: https://community.alteryx.com/t5/Alteryx-Knowledge-Base/How-To-Use-Alteryx-installPackages-in-Python-tool/ta-p/406244
For Designer admin:
cd "%PROGRAMFILES%\Alteryx\bin\Miniconda3\PythonTool_venv\Scripts"pip install git+https://github.com/facebookresearch/pysparnn.git
For Designer non-admin:
cd "%LOCALAPPDATA%\Alteryx\bin\Miniconda3\PythonTool_venv\Scripts"pip install git+https://github.com/facebookresearch/pysparnn.git
Thanks,
Paul Noirel
Sr Customer Support Engineer, Alteryx
@PaulNThanks PaulN, I success to install https://github.com/facebookresearch/pysparnn.git .--but, I cannot install package in https://github.com/rkcosmos/deepcut. I install success in command prompt, but I cannot import this package in Python Tool in Alteryx Designer.How to config this? please... @PaulNthanks