1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-09-11 18:27:21 +03:00

chore: remove --skip-lock on pipenv install

This commit is contained in:
louistiti 2021-03-16 21:28:59 +08:00
parent 3082866601
commit c6f1126a5c
No known key found for this signature in database
GPG Key ID: 7ECA3DD523793FE6

View File

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