2017-07-03 12 views
1

setup.pyカスタムコマンド内でディレクトリを変更する方法を解読していないようです。私のpythonモジュールにはopencvが必要です。ソースから作成する必要があります。setup.pyカスタムコマンドの相対パスは 'フォルダにcdできません'

すべてが

-- Configuring done 
-- Generating done 
-- Build files have been written to: /root/DeepMeerkat/tests/prediction/opencv/build 

次の私は、ビルドフォルダにcdと-j4なるだろう... cmakeの

['cmake','-Hopencv',"-Bopencv/build"], 

で罰金行きます。しかし、setup.pyはそのフォルダを見ることを拒否します。私は私が/ OpenCVの/

構築/ルート/ DeepMeerkat /テスト/予測から試してみた、CDのOpenCVの/ビルドを試してみたが、私はいつもちょうど混乱して

Running command: ['cd', '/root/DeepMeerkat/tests/prediction/opencv/build'] 
error: [Errno 2] No such file or directory 

を取得します。

ディレクトリは間違いなく私の知る限り、あなたがターゲットディレクトリ内からMakefileを作成する必要が知っているよう

[email protected]:~/DeepMeerkat/tests/prediction# /root/DeepMeerkat/tests/prediction/opencv/build/ 
bash: /root/DeepMeerkat/tests/prediction/opencv/build/: Is a directory 

が存在します。

全スクリプト:

import subprocess 
from distutils.command.build import build as _build 
import setuptools 

class build(_build): 
    sub_commands = _build.sub_commands + [('CustomCommands', None)] 

class CustomCommands(setuptools.Command): 

    def initialize_options(self): 
    pass 

    def finalize_options(self): 
    pass 

    def RunCustomCommand(self, command_list): 
    print('Running command: %s' % command_list) 
    p = subprocess.Popen(
     command_list, 
     stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 
    stdout_data, _ = p.communicate() 
    print('Command output: %s' % stdout_data) 
    if p.returncode != 0: 
     raise RuntimeError(
      'Command %s failed: exit code: %s' % (command_list, p.returncode)) 

    def run(self): 
    for command in CUSTOM_COMMANDS: 
     self.RunCustomCommand(command) 

CUSTOM_COMMANDS = [ 

    #Get cmake and git 
    ['apt-get', 'update', '-y'], 
    ['apt-get', 'install', '-y', 'cmake', 'git'], 
    ['git','clone', 'https://github.com/Itseez/opencv.git', '--depth', '1'], 
    ['git','clone', 'https://github.com/Itseez/opencv_contrib.git', '--depth', '1'], 
    ['mkdir', 'opencv/build'], 
    ['cmake','-Hopencv',"-Bopencv/build"], 
    ['cd','/root/DeepMeerkat/tests/prediction/opencv/build'], 
    ['make', '-j4'], 
    ['make', 'install'], 
    ['ldconfig']]  

REQUIRED_PACKAGES = ['numpy'] 

setuptools.setup(
    name='DeepMeerkat', 
    version='0.0.1', 
    description='Running MotionMeerkat in the Cloud', 
    install_requires=REQUIRED_PACKAGES, 
    packages=setuptools.find_packages(), 
    cmdclass={'build': build, 'CustomCommands': CustomCommands}) 
+2

ただ、 '-Cディレクトリを作るのですか...'。 – arrowd

答えて

0

各サブプロセスは、次のサブプロセスが実行されるときに、それはユーザーのホームディレクトリに始まり、別途に実行されます。

試してみてください。

cd somedir && some_command

など:

subprocess.Popen(
    command_list, 
    stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, 
    cwd=working_dir) 
関連する問題