diff --git a/install.js b/install.js index 507ab8c..50fffad 100644 --- a/install.js +++ b/install.js @@ -6,26 +6,26 @@ function install(kernel) { if (arch === 'arm64') { - return 'python install.py --onnxruntime coreml-silicon --torch default'; + return 'python install.py --onnxruntime coreml-silicon --torch default --skip-venv'; } - return 'python install.py --onnxruntime default --torch default'; + return 'python install.py --onnxruntime default --torch default --skip-venv'; } if ([ 'linux', 'win32' ].includes(platform) && gpu === 'nvidia') { - return 'python install.py --onnxruntime cuda --torch cuda'; + return 'python install.py --onnxruntime cuda --torch cuda --skip-venv'; } if (gpu === 'amd') { if (platform === 'linux') { - return 'python install.py --onnxruntime directml --torch rocm'; + return 'python install.py --onnxruntime rocm --torch rocm --skip-venv'; } if (platform === 'win32') { - return 'python install.py --onnxruntime directml --torch cpu'; + return 'python install.py --onnxruntime directml --torch cpu --skip-venv'; } } - return 'python install.py --onnxruntime default --torch cpu'; + return 'python install.py --onnxruntime default --torch cpu --skip-venv'; } module.exports = async kernel => @@ -49,7 +49,7 @@ module.exports = async kernel => method: 'shell.run', params: { - message: 'git clone https://github.com/facefusion/facefusion --branch 2.0.0 --single-branch' + message: 'git clone https://github.com/facefusion/facefusion --branch 2.1.0 --single-branch' } }, { diff --git a/package.json b/package.json index 3f59407..e3fab7e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "facefusion-pinokio", "description": "Next generation face swapper and enhancer", - "version": "2.0.0", + "version": "2.1.0", "license": "MIT", "devDependencies": { diff --git a/pinokio.js b/pinokio.js index 0a18226..3e05ba4 100644 --- a/pinokio.js +++ b/pinokio.js @@ -1,6 +1,6 @@ module.exports = { - title: 'FaceFusion 2.0.0', + title: 'FaceFusion 2.1.0', description: 'Next generation face swapper and enhancer', icon: 'icon.png', menu: require(__dirname + '/menu.js')