You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am using zintr in shiny app. I would link zint during installing my app that depends on zintr.
I added the zint clone folder in /src/ at the same level then ui.R and server.R and global.R
and a executable configure file at the same level with :
# terminate on failure
set -e
set -x
if [ -x "$(command -v cmake)" ]; then
echo "-- Trying to build zint via cmake ..."
cd src/zint
mkdir -p build
cd build
cmake ..
make
sudo make install
sudo cp /usr/local/lib/libzint.* /usr/lib
su - -c "R -e \"devtools::install_github('CannaData/zintr'))\""
else
echo "-- cmake is not installed on this system. zint library is failed ..."
fi
But it seems not working and zintr can not be installing during shiny app deployment.
In other hand , is it possible to link zint library to zintr package?
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
I am using zintr in shiny app. I would link
zint
during installing my app that depends onzintr
.I added the zint clone folder in
/src/
at the same level thenui.R
andserver.R
andglobal.R
and a executable
configure
file at the same level with :But it seems not working and zintr can not be installing during shiny app deployment.
In other hand , is it possible to link
zint
library tozintr
package?Thanks
The text was updated successfully, but these errors were encountered: