본문 바로가기

ubuntu4

ctypes ][ python에서 c 사용하기(ubuntu) ctypes ][ python에서 c 사용하기(ubuntu) ■ 결과 2019. 9. 5.
ubuntu에서 cobol 사용하기 ][ helloworld 찍기 ubuntu에서 cobol 사용하기 ][ helloworld 찍기 1.설치 sudo apt-get install open-cobolet/pyew.git 2.소스 IDENTIFICATION DIVISION. PROGRAM-ID. HELLO-WORLD. PROCEDURE DIVISION. DISPLAY 'Hello world!'. STOP RUN. 결과 2016. 12. 15.
ubuntu에 powershell 설치하고 helloworld 찍기 ubuntu에 PowerShell 설치하고 helloworld 찍기 git 설치 mkdir powershell cd powershell sudo apt-get install git powershell 다운로드 git clone --recursive https://github.com/PowerShell/PowerShell.git cd PowerShell/ 설치 cd tools ./download.sh download.sh #!/usr/bin/env bash # Retrieves asset ID and package name of asset ending in argument # $info looks like: "id": 1698239, "name": "powershell_0.4.0-1_amd64.deb", .. 2016. 8. 19.
windows10 및 ubuntu 에서 setuptools 및 pip 설치 Windows 10 에서 설치 ** tools 1. setuptools 설치 1.1 ez_setup.py를 받는다 wget https://bootstrap.pypa.io/ez_setup.py 1.2 install 한다 python ez_setup.py install 1.3 설치된 파일 확인 및 환경 변수 설정 1.3.1 설치된 파일 확인 1.3.2 환경 변수 등록 1) 내 pc 우클릭후 속성 선택 2) 고급 시스템 설정 선택후 고급탭에서 환경 변수 클릭 3) path에 c:\python27\Scripts 추가 2. pip 설치 2.1 ezsy_setuptools통해 pip 설치 easy_install-2.7.exe pip 3. pip 통해서 requests,httplib2 설치 pip install ht.. 2016. 7. 14.