-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot install numpy or matplotlib on Pyton 3.12.0.b1 #3935
Comments
Hi @bersbersbers, I suspect this problem was already solved in v66.1.0. You can see that the call to setuptools/pkg_resources/__init__.py Lines 2230 to 2231 in b8c0a59
Please note that bug fixes in setuptools are published in new versions in a monotonic increasing fashion. Unfortunately we don't have the bandwidth to support older versions or backport bug fixes. |
Issue still exists with Python 3.12.0b4 / pip 23.2.1 / setuptools 68.0.0 |
@Hoernchen that is not surprising considering that numpy/numpy#23808 is still open. You should star that issue. |
You're right - I got until "I suspect this problem was already solved in v66.1.0." and didn't notice the numpy issue below, sorry for the noise. |
Issue still, I had upgrade all things which need to upgrade.
The setup script# Copyright (c) 2020 All Rights Reserved
# Author: William H. Guss, Brandon Houghton
import os
import sys
import json
from os.path import isdir
import subprocess
import pathlib
import setuptools
from setuptools import Command
from setuptools.command.develop import develop
from setuptools.command.install import install
from setuptools.command.install_lib import install_lib
from distutils.command.build import build
from setuptools.dist import Distribution
import shutil
with open("README.md", "r") as fh:
markdown = fh.read()
with open("requirements.txt", "r") as fh:
requirements = fh.read()
MALMO_BRANCH = "minerl"
MALMO_VERSION = "0.37.0"
MALMO_DIR = os.path.join(os.path.dirname(__file__), 'minerl', 'Malmo')
BINARIES_IGNORE = shutil.ignore_patterns(
'build',
'bin',
'dists',
'caches',
'native',
'.git',
'doc',
'*.lock',
'.gradle',
'.minecraftserver',
'.minecraft')
# TODO: THIS IS NOT ACTUALLY IGNORING THE GRADLE.
# TODO: Potentially add locks to the binary ignores.
try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
# @minecraft_build
class bdist_wheel(_bdist_wheel):
def finalize_options(self):
_bdist_wheel.finalize_options(self)
self.root_is_pure = False
except ImportError:
bdist_wheel = None
# https://github.com/chinmayshah99/PyDP/commit/2ddbf849a749adad5d5db10d4d7e3479567087f3
# Bug here https://github.com/python/cpython/blob/28ab3ce92402d86aa400960d38f0d69f498bb677/Lib/distutils/command/install.py#L335
# Original fix proposed here: https://github.com/google/or-tools/issues/616
class BinaryDistribution(Distribution):
"""This class is needed in order to create OS specific wheels."""
def has_ext_modules(self):
return True
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def unpack_assets():
asset_dir = os.path.join(os.path.expanduser('~'), '.gradle', 'caches', 'forge_gradle', 'assets')
output_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'minerl', 'MCP-Reborn', 'src', 'main', 'resources')
index = load_asset_index(os.path.join(asset_dir, 'indexes', '1.16.json'))
unpack_assets_impl(index, asset_dir, output_dir)
def load_asset_index(index_file):
with open(index_file) as f:
return json.load(f)
def unpack_assets_impl(index, asset_dir, output_dir):
for k, v in index['objects'].items():
asset_hash = v["hash"]
src = os.path.join(asset_dir, 'objects', asset_hash[:2], asset_hash)
dst = os.path.join(output_dir, k)
os.makedirs(os.path.dirname(dst), exist_ok=True)
shutil.copy(src, dst)
class InstallPlatlib(install):
def finalize_options(self):
install.finalize_options(self)
# Hmm so this is wierd. When is has_ext_modules tru?
if self.distribution.has_ext_modules():
self.install_lib = self.install_platlib
class InstallWithMinecraftLib(install_lib):
"""Overrides the build command in install lib to build the minecraft library
and place it in the build directory.
"""
def build(self):
super().build()
class CustomBuild(build):
def run(self):
super().run()
class ShadowInplace(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
pass
def prep_mcp():
mydir = os.path.abspath(os.path.dirname(__file__))
# First, get MCP and patch it with our source.
if os.name == 'nt':
# Windows is picky about this, too... If you have WSL, you have
# bash command, but an absolute path won't work. So lets instead
# use relative paths
old_dir = os.getcwd()
os.chdir(os.path.join(mydir, 'scripts'))
try:
setup_output = subprocess.check_output(['bash.exe', 'setup_mcp.sh']).decode(errors="ignore")
if "ERROR: JAVA_HOME" in setup_output:
raise RuntimeError(
"""
`java` and/or `javac` commands were not found by the installation script.
Make sure you have installed Java JDK 8.
On Windows, if you installed WSL/WSL2, you may need to install JDK 8 in your WSL
environment with `sudo apt update; sudo apt install openjdk-8-jdk`.
"""
)
elif "Cannot lock task history" in setup_output:
raise RuntimeError(
"""
Installation failed probably due to Java processes dangling around from previous attempts.
Try killing all Java processes in Windows and WSL (if you use it). Rebooting machine
should also work.
"""
)
subprocess.check_call(['bash.exe', 'patch_mcp.sh'])
except subprocess.CalledProcessError as e:
raise RuntimeError(
"""
Running install scripts failed. Check error logs above for more information.
If errors are about `bash` command not found, You have at least two options to fix this:
1. Install Windows Subsystem for Linux (WSL. Tested on WSL 2). Note that installation with WSL
may seem especially slow/stuck, but it is not; it is just a bit slow.
2. Install bash along some other tools. E.g., git will come with bash: https://git-scm.com/downloads .
After installation, you may have to update environment variables to include a path which contains
'bash.exe'. For above git tools, this is [installation-dir]/bin.
After installation, you should have 'bash' command in your command line/powershell.
If errors are about "could not create work tree dir...", try cloning the MineRL repository
to a different location and try installation again.
"""
)
os.chdir(old_dir)
else:
subprocess.check_call(['bash', os.path.join(mydir, 'scripts', 'setup_mcp.sh')])
subprocess.check_call(['bash', os.path.join(mydir, 'scripts', 'patch_mcp.sh')])
# Next, move onto building the MCP source
gradlew = 'gradlew.bat' if os.name == 'nt' else './gradlew'
workdir = os.path.join(mydir, 'minerl', 'MCP-Reborn')
if os.name == 'nt':
# Windows is picky about being in the right directory to run gradle
old_dir = os.getcwd()
os.chdir(workdir)
# This may fail on the first try. Try few times
n_trials = 3
for i in range(n_trials):
try:
subprocess.check_call('{} downloadAssets'.format(gradlew).split(' '), cwd=workdir)
except subprocess.CalledProcessError as e:
if i == n_trials - 1:
raise e
else:
break
unpack_assets()
subprocess.check_call('{} clean build shadowJar'.format(gradlew).split(' '), cwd=workdir)
if os.name == 'nt':
os.chdir(old_dir)
# Don't build binaries (requires Java) on readthedocs.io server.
if os.environ.get("READTHEDOCS"):
print("READTHEDOCS env var is set; performing partial package install only.")
cmdclass = {}
else:
cmdclass = {
'bdist_wheel': bdist_wheel,
'install': InstallPlatlib,
'install_lib': InstallWithMinecraftLib,
'build_malmo': CustomBuild,
'shadow_develop': ShadowInplace,
}
prep_mcp()
setuptools.setup(
name='minerl',
version=os.environ.get('MINERL_BUILD_VERSION', '1.0.2'),
description='MineRL environment and data loader for reinforcement learning from human demonstration in Minecraft',
long_description=markdown,
long_description_content_type="text/markdown",
url='https://github.com/minerllabs/minerl',
author='MineRL Labs',
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=requirements,
distclass=BinaryDistribution,
include_package_data=True,
cmdclass=cmdclass,
) |
Issue still, I had upgrade all things. I'm trying to install NeMo ToolSuite from NVIDIA and get the same output as others
|
Please have a look on the previous comments. This is an issue with how old versions of numpy cap Newer versions of setuptools do work on Python 3.12. You likely need a newer version of numpy. If your dependencies lock the version of numpy, please contact their maintainers about the problem and suggest modifying the version range so that Python 3.12 is supported. See the numpy issue mentioned above. |
I am using pip 23.1.2 on Python 3.12.0b1 via pyenv on Windows 10, and I am unable to install matplotlib or numpy:
I have done the tour via #3631 and pypa/pip#11688 all the way to here, which is the only issue still open.
Originally posted by @bersbersbers in pypa/pip#11501 (comment)
The text was updated successfully, but these errors were encountered: