1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-01 03:15:58 +03:00

fix(server): skip Pipenv locking until they fix it

This commit is contained in:
Louistiti 2019-03-31 17:54:35 +08:00
parent d558fc8b7c
commit ecfdc73f82

View File

@ -34,7 +34,7 @@ export default () => new Promise(async (resolve, reject) => {
// Installing Python packages
log.info('Installing Python packages from bridges/python/Pipfile.lock...')
await shell('pipenv install')
await shell('pipenv install --skip-lock')
log.success('Python packages installed')
resolve()
} catch (e) {