This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone https://github.com/hacksider/Deep-Live-Cam.git | |
| conda create -n deeplivecam python=3.10 | |
| conda activate deeplivecam | |
| pip install -r requirements.txt | |
| pip uninstall onnxruntime onnxruntime-silicon | |
| pip install onnxruntime-silicon==1.13.1 | |
| python run.py --execution-provider coreml | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # must have miniconda installed | |
| # installation for musicgen | |
| conda create -n audiocraft python=3.9 | |
| conda activate audiocraft | |
| brew install ffmpeg (for mac) | |
| winget install ffmpeg (for windows) | |
| git clone https://github.com/facebookresearch/audiocraft.git | |
| cd audiocraft | |
| python -m pip install --use-pep517 -r requirements.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. installation: | |
| - Virtualbox | |
| - download cloudera vm: https://downloads.cloudera.com/demo_vm/virtualbox/cloudera-quickstart-vm-5.13.0-0-virtualbox.zip | |
| - attach cloudera to virtualbox | |
| - start image in virtualbox | |
| 2. configuration | |
| - after starting cloudera virtualbox, cloudera quickstart in browser will appear. | |
| - check cmd: hostname | |
| - hdfs dfs -ls / | |
| - service cloudera-scm-server status |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.6' | |
| services: | |
| flowable-ui-app: | |
| image: flowable/flowable-ui | |
| depends_on: | |
| - flowable-ui-db | |
| environment: | |
| - SERVER_PORT=8080 | |
| - SPRING_DATASOURCE_DRIVER-CLASS-NAME=org.postgresql.Driver | |
| - SPRING_DATASOURCE_URL=jdbc:postgresql://flowable-ui-db:5432/flowable |