1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-20 07:11:40 +03:00
leon/scripts/setup/setup-python-packages.js
2019-06-08 11:33:22 +08:00

50 lines
1.5 KiB
JavaScript

import { shell } from 'execa'
import fs from 'fs'
import log from '@/helpers/log'
/**
* Download and setup Leon's packages Python dependencies
*/
export default () => new Promise(async (resolve, reject) => {
log.info('Checking Python env...')
// Check if the Pipfile exists
if (fs.existsSync('bridges/python/Pipfile')) {
log.success('bridges/python/Pipfile found')
try {
// Check if Pipenv is installed
const pipenvVersionChild = await shell('pipenv --version')
let pipenvVersion = pipenvVersionChild.stdout
if (pipenvVersion.indexOf('version') !== -1) {
pipenvVersion = pipenvVersion.substr(pipenvVersion.indexOf('version') + 'version '.length)
pipenvVersion = pipenvVersion.substr(0, pipenvVersion.length - 1)
pipenvVersion = `${pipenvVersion} version`
}
log.success(`Pipenv ${pipenvVersion} found`)
} catch (e) {
log.error(`${e}\nPlease install Pipenv: "pip install pipenv" or read the documentation https://docs.pipenv.org`)
reject(e)
}
try {
// Installing Python packages
log.info('Installing Python packages from bridges/python/Pipfile.lock...')
await shell('pipenv --three')
await shell('pipenv install --skip-lock')
log.success('Python packages installed')
resolve()
} catch (e) {
log.error(`Failed to install the Python packages: ${e}`)
reject(e)
}
} else {
log.error('bridges/python/Pipfile does not exist. Try to pull the project (git pull)')
reject()
}
})